Can I use the or operator in Access 2010
IIf(Mid([WBCode],4,1)="D" or "N"....
I am finding that I can use AND and LIKE, but not seeing the OR
Can I use the or operator in Access 2010
IIf(Mid([WBCode],4,1)="D" or "N"....
I am finding that I can use AND and LIKE, but not seeing the OR
I doubt you used AND like that. Both require the field to be repeated:
IIf(Mid([WBCode],4,1)="D" or Mid([WBCode],4,1)= "N"....