Hello! I am trying to do a report for work that has the following information. I have a table listing Client Name, Account Number, Officer Name, # of Accounts, Date Account Opened, Group #. I need the report to be grouped by client name and it needs to list the Account Number and officer name. It needs to show the information by month for each client. How do I get the report to list the customers information by month without splitting the information into multiple tables?
What I need for the report:
Client Name: John Doe Account #: 123456
January February March April
# Accounts 3 2 1 5
Client ID A A B C
Table I have:
Client Name: # Accounts Client ID Month
John Doe 5 A 12/01/10
John Doe 3 A 11/01/10
John Doe 2 B 10/01/10
Jane Doe 4 D 12/01/10
Jane Doe 2 E 11/01/10
Jane Doe 1 A 10/01/10