That means it does not recognize the field name. That usually means you are trying to reference a field that does not exist or you have a typo in your field name.
That means it does not recognize the field name. That usually means you are trying to reference a field that does not exist or you have a typo in your field name.
I think you may simply have too many parentheses. Most Iif functions look more like this:
You shouldn't need parentheses around the expression, the truepart, and the falsepart, respectively, but parentheses to enclose all three together.Code:Iif(expression,truepart,falsepart).
You would get a syntax error in that instance, not a parameter box.I think you may simply have too many parentheses.
That's true, my mistake.