Using DSum to sum all Awards between 1/1/2004 and 1/31/2004

  • Thread starter Thread starter RockNRoll
  • Start date Start date
R

RockNRoll

Greetings,

I have a field on a report that I would like to be the sum of all awards
between 1/1/2004 and 1/31/2004. I believe DSUM is the correct function and
I have read up on the use of it, but am stumped on this one.

Thanks for your help,
-Dave
 
Hi Dave

This should work for you:

DSum( "FieldToBeSummed", "TableName",
"DateField between #1/1/2004# and #1/31/2004#" )
 
RockNRoll said:
I have a field on a report that I would like to be the sum of all awards
between 1/1/2004 and 1/31/2004. I believe DSUM is the correct function and
I have read up on the use of it, but am stumped on this one.


DSum("fieldto sum", "thetable", "awarddatefield Between
#1/1/2004# And #1/31/2004#)
 

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 Problem - Summing just the records for the specified row 1
DSum between dates 1
DSum Problem 2
Dsum Help 0
DSum Question 1
DSum #Error 4
Using DSum 1
DSum() Question 3

Back
Top