DSum with multiple criteria

silv0920

New Member
Joined
Mar 21, 2015
Messages
10
Hi,

I have this DSum statement in my access query with 1 criteria but I need to add in another criteria. The other criteria is also in the same table. I don’t know how to include multiple criteria in the same DSum statement. This is what I have now:
YTD: Format(DSum("[Amount]","[TableName]","[Field1]<=" & [Field1]),"Currency")

Any help would be greatly appreciated.

Thanks!
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Try:

DSum("[Field1]","TableOrQuery","[Field2] = '" & [Field2] & "' and [Field3] = '" & [Field3] & "' and [Field4] = '" & [Field4] & "'")
 
Upvote 0

Forum statistics

Threads
1,221,889
Messages
6,162,624
Members
451,778
Latest member
ragananthony7911

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top