I have two tables - accounts and invoices. I want to create a tabular report where each record contains the sum
of AccountBalance by AccountType and uses calculated fields to return data from the invoice table. How do I create a tabular report that is first grouped by AccountType so that I can eliminate multiple rows and provide a higher level report? Can this be accomplished with a view of Accounts?
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Question
cg001
I have two tables - accounts and invoices. I want to create a tabular report where each record contains the sum
of AccountBalance by AccountType and uses calculated fields to return data from the invoice table. How do I create a tabular report that is first grouped by AccountType so that I can eliminate multiple rows and provide a higher level report? Can this be accomplished with a view of Accounts?
ACCOUNTS
Account# AccountType AccountBalance
1 1 50
2 1 50
3 2 75
INVOICES
Invoice# Account# InvoiceTotal
1 1 10
2 2 20
3 3 10
Desired Report
------------
AccountType AccountBalance Invoice RemainingBalance
1 100 30 70
2 75 10 65
Instead of
---------
AccountType AccountBalance Invoice RemainingBalance
1 50 30 20
1 50 30 20
2 75 10 65
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.