IIF
I have a simple IIF that just will not work. It throws the ") expected" error.
What I think should work: IIF( valueA > valueB, "true", "false")
I have tried:
[IIF( valueA > valueB, "true", "false")]
IIF( valueA > valueB; "true", "false")
[IIF( valueA > valueB; "true", "false")]
Nothing seems to work on this very basic attempt.
HELP!
Michael
What I think should work: IIF( valueA > valueB, "true", "false")
I have tried:
[IIF( valueA > valueB, "true", "false")]
IIF( valueA > valueB; "true", "false")
[IIF( valueA > valueB; "true", "false")]
Nothing seems to work on this very basic attempt.
HELP!
Michael
Comments
[IIF( (valueA > valueB); "true", "false")]