Jump to content

Adding a new twist to old payables system


shorty

This topic is 8514 days old. Please don't post here. Open a new topic instead.

Recommended Posts

I have a payables system that up until this point has worked for all purposes. Now our corporate would like me to add a Comparative Expenses Report from the payables system. At this point I am able to generate a General Ledger Distribution Report by finding the month then sorting it by GL #. The report gives a total for each General Ledger number in the preview mode. I would like to take the totals from the General Ledger report and place then on the new report. I have made a new layout and put the GL # and GL Name field on the report but when I look at the report in browse mode I get an entry for each transaction. I would like to group them according to classes. Is this possible? Help!

Link to comment
Share on other sites

I am sorry, I have a Vendors DB, General Ledger DB, Payables DB. In the payables database I have 3 layouts. One is the data entry form. The other is the listing for double checking data entry. One is for the GL Distribution report that has a subsummary part when sorted by GL #. The next layout is the new Comparative Report. I tried putting the GL # and the GL Name on the report but that gave me every transaction. Example if there were 10 Retail Advertising-Supplies transaction it gave me 10 listings. Need to combine them. Will try your suggestion. Sorry not very good at explaining. First year of trying to get corporate up to speed on computer database use.

Link to comment
Share on other sites

You mention reports, but don't tell us how many files you have. I'll assume that you have one file for all the reports. You can total a Month/GL# by creating a relationship based upon Month and GL#. Define a field:

Index (calculation, indexed, text) =

Right("00" & Month(Date), 2) & GL#

Create a self relationship Index matching Index.

Create a Total field:

GLMonthTotal (calculation) =

Sum(SelfByIndex::Amount)

This calculations makes some assumptions about the report layout (the calculation depends upon which record you are on), but without a lot more detail about you database files and report layouts it is hard to give you exact instructions. Place the GLMonthTotal on you layout and see what happens.

-bd

Link to comment
Share on other sites

This topic is 8514 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.