2 Value in Criteria

eyeseven

New member
Local time
Today, 03:05
Joined
Aug 6, 2012
Messages
8
Hi.. i'm trying to filter from dsum criteria the two values, here is my code :

Code:
=DSum("Amount","qry_sumawpo","[Status] = 'FBLNG'" OR "[Status] = 'BLLD'")

please help me to correct this code.

I need 2 different values in 1 criteria.
 
Last edited:
Try this one.
Code:
= Nz(DSum("Amount","qry_sumawpo","[Status] = 'FBLNG' OR [Status] = 'BLLD'"), 0)
 

Users who are viewing this thread

Back
Top Bottom