C
croy
I'm having trouble with this in a query:
Bad_Code: IIf(([CWTnum1-3]="" And
[CWTnum1-1]=”100000”),[CWTnum1-1])
The goal is: If [CWTnum1-3] is a zero-length string AND
[CWTnum1-1] contains "100000" , then use the value in
[CWTnum1-1].
Access keeps throwing brackets around the second criteria
Bad_Code: IIf(([CWTnum1-3]="" And
[CWTnum1-1]=[”100000”]),[CWTnum1-1])
Any help appreciated.
Bad_Code: IIf(([CWTnum1-3]="" And
[CWTnum1-1]=”100000”),[CWTnum1-1])
The goal is: If [CWTnum1-3] is a zero-length string AND
[CWTnum1-1] contains "100000" , then use the value in
[CWTnum1-1].
Access keeps throwing brackets around the second criteria
Bad_Code: IIf(([CWTnum1-3]="" And
[CWTnum1-1]=[”100000”]),[CWTnum1-1])
Any help appreciated.