C
clalc
I have created 2 separate expressions in query:
Test_1: IIf(
![Field2] Not Like ("*[A-Z0-9]*"),"Missing",0)
Test_2: IIf(
![Field1] Not Like ("*[A-Z0-9]*"),1, "Found")
When I combine them into:
Test_3: IIf(
![Field1] Not Like ("*[A-Z0-9]*"),1,IIf(
![Field2]
Not Like ("*[A-Z0-9]*"),"Missing",0))
I get the #Error message where Field2 is missing. Why is that so ?
Test_1: IIf(
Test_2: IIf(
When I combine them into:
Test_3: IIf(
Not Like ("*[A-Z0-9]*"),"Missing",0))
I get the #Error message where Field2 is missing. Why is that so ?