DSUM

G

Guest

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.)
 
D

Duane Hookom

If Partner_ID is numeric, you could use:
DSUM("[InvoiceAmt], "qry_equipment_amt", "[Partner_ID] = " & [Partner_ID])
If all the values you want to sum are in the report and the text box is in
the Partner_ID footer, you can simply use:
=Sum(InvoiceAmt)
 
G

Guest

I did this and now I get all 0.00 because I added
=Nz(DSum("[Allocation_Amt]","qry_allocation_partner_equip","[Partner_ID]"="&
[Partner_ID]"),"$0.00 ").

The values are in an other query outside of the report.

Duane Hookom said:
If Partner_ID is numeric, you could use:
DSUM("[InvoiceAmt], "qry_equipment_amt", "[Partner_ID] = " & [Partner_ID])
If all the values you want to sum are in the report and the text box is in
the Partner_ID footer, you can simply use:
=Sum(InvoiceAmt)


--
Duane Hookom
MS Access MVP
--

Tina said:
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.)
 
D

Duane Hookom

Doesn't look like you used the syntax that I suggested.

--
Duane Hookom
MS Access MVP
--

Tina said:
I did this and now I get all 0.00 because I added
=Nz(DSum("[Allocation_Amt]","qry_allocation_partner_equip","[Partner_ID]"="&
[Partner_ID]"),"$0.00 ").

The values are in an other query outside of the report.

Duane Hookom said:
If Partner_ID is numeric, you could use:
DSUM("[InvoiceAmt], "qry_equipment_amt", "[Partner_ID] = " &
[Partner_ID])
If all the values you want to sum are in the report and the text box is
in
the Partner_ID footer, you can simply use:
=Sum(InvoiceAmt)


--
Duane Hookom
MS Access MVP
--

Tina said:
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.)
 
G

Guest

hi,

when I use the syntax you provided DSUM("[InvoiceAmt], "qry_equipment_amt",
"[Partner_ID] = " & [Partner_ID])

I get a syntax error..

Duane Hookom said:
Doesn't look like you used the syntax that I suggested.

--
Duane Hookom
MS Access MVP
--

Tina said:
I did this and now I get all 0.00 because I added
=Nz(DSum("[Allocation_Amt]","qry_allocation_partner_equip","[Partner_ID]"="&
[Partner_ID]"),"$0.00 ").

The values are in an other query outside of the report.

Duane Hookom said:
If Partner_ID is numeric, you could use:
DSUM("[InvoiceAmt], "qry_equipment_amt", "[Partner_ID] = " &
[Partner_ID])
If all the values you want to sum are in the report and the text box is
in
the Partner_ID footer, you can simply use:
=Sum(InvoiceAmt)


--
Duane Hookom
MS Access MVP
--

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.)
 
T

Tom Lake

Tina said:
hi,

when I use the syntax you provided DSUM("[InvoiceAmt],
"qry_equipment_amt",
"[Partner_ID] = " & [Partner_ID])


If Partner_ID is a text field, you have to enclose it in apostrophes or
quotes:

DSUM("[InvoiceAmt], "qry_equipment_amt", "[Partner_ID] = '" & [Partner_ID] &
"'")

would work.

Tom Lake
 
G

Guest

I fixed the syntax and it worked. But when my report comes up it asks me to
enter paramater values for two fields. There is nothing in my record source
with these values. Would you have any idea where there coming from and how
to remove this from coming up?

Tina said:
hi,

when I use the syntax you provided DSUM("[InvoiceAmt], "qry_equipment_amt",
"[Partner_ID] = " & [Partner_ID])

I get a syntax error..

Duane Hookom said:
Doesn't look like you used the syntax that I suggested.

--
Duane Hookom
MS Access MVP
--

Tina said:
I did this and now I get all 0.00 because I added
=Nz(DSum("[Allocation_Amt]","qry_allocation_partner_equip","[Partner_ID]"="&
[Partner_ID]"),"$0.00 ").

The values are in an other query outside of the report.

:

If Partner_ID is numeric, you could use:
DSUM("[InvoiceAmt], "qry_equipment_amt", "[Partner_ID] = " &
[Partner_ID])
If all the values you want to sum are in the report and the text box is
in
the Partner_ID footer, you can simply use:
=Sum(InvoiceAmt)


--
Duane Hookom
MS Access MVP
--

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.)
 
D

Duane Hookom

Look in the sorting and grouping dialog. Also, are there parameters in
qry_equipment_amt?

--
Duane Hookom
MS Access MVP
--

Tina said:
I fixed the syntax and it worked. But when my report comes up it asks me
to
enter paramater values for two fields. There is nothing in my record
source
with these values. Would you have any idea where there coming from and
how
to remove this from coming up?

Tina said:
hi,

when I use the syntax you provided DSUM("[InvoiceAmt],
"qry_equipment_amt",
"[Partner_ID] = " & [Partner_ID])

I get a syntax error..

Duane Hookom said:
Doesn't look like you used the syntax that I suggested.

--
Duane Hookom
MS Access MVP
--

I did this and now I get all 0.00 because I added
=Nz(DSum("[Allocation_Amt]","qry_allocation_partner_equip","[Partner_ID]"="&
[Partner_ID]"),"$0.00 ").

The values are in an other query outside of the report.

:

If Partner_ID is numeric, you could use:
DSUM("[InvoiceAmt], "qry_equipment_amt", "[Partner_ID] = " &
[Partner_ID])
If all the values you want to sum are in the report and the text box
is
in
the Partner_ID footer, you can simply use:
=Sum(InvoiceAmt)


--
Duane Hookom
MS Access MVP
--

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.)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

dsum inquiry 1
Obtain data from Query for Report 2
DoCmd.OpenReport 14
#Error 5
calculations of records within detail section 2
Erratic Report Field Format 6
sum then divide columns 3
Has No Data 1

Top