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