Hello everyone ive a problem with an IIF statement which i try to use in access quary builder.
I put this in the field and ive also tried a textbox
ive also tried this
but i always get syntax error
"the expression you entered contains invalid syntax. You may have entered an operand without an operator"
PS
I am trying to create a new field with this IIF statement
DS
I put this in the field and ive also tried a textbox
Code:
=IIF(CountOfParticipant_id1 > 1, "TRUE", "FALSE")
Code:
IIF(CountOfParticipant_id1 > 1, "TRUE", "FALSE")
Code:
=IIF([CountOfParticipant_id1] > 1, "TRUE", "FALSE")
Code:
IIF([CountOfParticipant_id1] > 1, "TRUE", "FALSE")
but i always get syntax error
"the expression you entered contains invalid syntax. You may have entered an operand without an operator"
PS
I am trying to create a new field with this IIF statement
DS
Comment