Query Sums in a Report

bellis

New member
Local time
Today, 06:29
Joined
Jun 27, 2012
Messages
8
Can I sum a query in a report?

In my report, I tried the below and got an error.

DSum("[QueryName]![Field1]","[QueryName]","[QueryName]![Field2]=Value")

Thank you in advance.
 
I still can't get it. Probably a syntax issue, as you said.

I tried copying the syntax from the link you sent. Any ideas? I'm stumped!

=DSum("[QueryName]![Field1]","[QueryName]","[QueryName]![Field2]='String'")

This is possible to do on all Query fields right?
 
Last edited:
Try

=DSum("[Field1]","[QueryName]","[Field2]='String'")
 

Users who are viewing this thread

Back
Top Bottom