Filtering in a Query

VSolano

Registered User.
Local time
Today, 04:17
Joined
Feb 21, 2017
Messages
97
Hi all

I need to guide regarding filtering this column in a query.

I have the following column:

BenefitsReconciliationDate: IIf([EndDateValue]=-1,[ReconciliatinDate],[EndDate])

If the value is null, it shows -1 and 0 if is not null

the value for the reconciliation date is the following:

ReconciliatinDate: CStr([TempVars]![recdates])

This field will give me a date
 
IIf([EndDateValue],[ReconciliatinDate],[EndDate]) means ENDDATEVALUE is true.
but your instructions say:
IIf(ISNULL([EndDateValue],TRUE,FALSE)
 
I just need to filter the selection
 

Users who are viewing this thread

Back
Top Bottom