Good evening, I have been struggling with creating a calculated field in a table. I am attempting to create a True/False field based on the following criteria.
IIf([PNCName] Like "*L3*") and (IIf([TypeShipInstructionsID] =5 or [TypeShipInstructionsID] =6), True, False))
I keep getting the error "The expression you entered has a function containing the wrong number of arguments. I am attempting to combine an "and" & "or" iif statement.
Suggestions?