I have created multiple queries that give the sum of the numbers entered into my [qty] field. Each query has the same function, except the criteria for the records used in the sum changes.
See the following for an example of the queries. You should get a general idea of what I am trying to do even though the syntax is not perfect.
query1=
test1: Sum([tblLabels]![qty])
where [tblLabels]![productNumber]= 1
query2=
test2: Sum([tblLabels]![qty])
where [tblLabels]![productNumber]= 2
and so on...
How can I get the results from the multiple queries to show on one form or report? I can't set the recordsource because the info comes from different queries.
Thank you,
Jonathan
See the following for an example of the queries. You should get a general idea of what I am trying to do even though the syntax is not perfect.
query1=
test1: Sum([tblLabels]![qty])
where [tblLabels]![productNumber]= 1
query2=
test2: Sum([tblLabels]![qty])
where [tblLabels]![productNumber]= 2
and so on...
How can I get the results from the multiple queries to show on one form or report? I can't set the recordsource because the info comes from different queries.
Thank you,
Jonathan