Hi
In a query I've created the following two expressions to check if the first field has a specific value and the second field has a date:
I have then created a further expression to test where either of the above two expressions meet the criteria:
However, whenever I add criteria (1 or 0) to [Expr14], I get the "Enter Parameter Value Expr12" pop up.
Can anyone tell me, please, why this might be occurring?
Thanks
In a query I've created the following two expressions to check if the first field has a specific value and the second field has a date:
Code:
Expr12: IIf([Err1]="Levy" And [Err1ResDate] Is Not Null,0,1)
Code:
Expr13: IIf([Err2]="Levy" And [Err2ResDate] Is Not Null,0,1)
I have then created a further expression to test where either of the above two expressions meet the criteria:
Code:
Expr14: IIf([Expr12]=1 Or [Expr13]=1,1,0)
However, whenever I add criteria (1 or 0) to [Expr14], I get the "Enter Parameter Value Expr12" pop up.
Can anyone tell me, please, why this might be occurring?
Thanks
Last edited: