I am writing a small sales tracking db in access and I am having trouble with a report.
The goal is to make a report that lists the top salesperson in each category. I already have the data from 5 queries -- each query has the top sales person and the number of sales in the query's category.
Two of these queries for example are:
query_computers
--------------
FIRST ID_EMP COMP_NUM
John Doe 5
query_stereos
-------------
FIRST ID_EMP STEREO_NUM
John Public 3
These queries came from other queries -- I won't go into detail because I don't think it matters for this question (but I will if I need to later).
I want to make a report like this -- the ( ) show where I think each item in the report should come from:
report_totals
-----------
Most computers sold: John Doe 5
(textlabel) (all three cols from query_computers)
Most stereos sold: John Public 3
(textlabel) (all three cols from query_stereos)
Thanks for any and all help!
The goal is to make a report that lists the top salesperson in each category. I already have the data from 5 queries -- each query has the top sales person and the number of sales in the query's category.
Two of these queries for example are:
query_computers
--------------
FIRST ID_EMP COMP_NUM
John Doe 5
query_stereos
-------------
FIRST ID_EMP STEREO_NUM
John Public 3
These queries came from other queries -- I won't go into detail because I don't think it matters for this question (but I will if I need to later).
I want to make a report like this -- the ( ) show where I think each item in the report should come from:
report_totals
-----------
Most computers sold: John Doe 5
(textlabel) (all three cols from query_computers)
Most stereos sold: John Public 3
(textlabel) (all three cols from query_stereos)
Thanks for any and all help!