T
Tina
I have created a report that gives me budget information from my tables. I
also created a query (qry_equipment_amt) that displays records with Invoice
Amounts.
I created a DSUM expression and in my report I have data grouped by
Partner_ID and the DSUM equation is calcualated in the Partner_ID Footer.
In my other query(qry_equipment_amt) it displays records based on a
Partner_ID, so for ex:
Partner_ID Amount
2 5000
6 100000
2 500
6 300
So I would like the partner group in my report (eg:2) to match the
partner_id in my query(qry_equipment_amt) and only add up the 2's for that
group. So the
respose should be $5500.00 for partner # 2.
Instead each partner displays the sum of all the Invoice Amounts $105800.
This is what I have but it just continues to give me the sum of all the
invoice amounts.
DSUM("[InvoiceAmt], "qry_equipment_amt", "[Partner_ID = Partner_ID]")
(partner id in my report query should match the partner Id of the other
query I cerated qry_equipment_amt.)
also created a query (qry_equipment_amt) that displays records with Invoice
Amounts.
I created a DSUM expression and in my report I have data grouped by
Partner_ID and the DSUM equation is calcualated in the Partner_ID Footer.
In my other query(qry_equipment_amt) it displays records based on a
Partner_ID, so for ex:
Partner_ID Amount
2 5000
6 100000
2 500
6 300
So I would like the partner group in my report (eg:2) to match the
partner_id in my query(qry_equipment_amt) and only add up the 2's for that
group. So the
respose should be $5500.00 for partner # 2.
Instead each partner displays the sum of all the Invoice Amounts $105800.
This is what I have but it just continues to give me the sum of all the
invoice amounts.
DSUM("[InvoiceAmt], "qry_equipment_amt", "[Partner_ID = Partner_ID]")
(partner id in my report query should match the partner Id of the other
query I cerated qry_equipment_amt.)