Hello all,
I'm having trouble with the OR() expression in SHOW_IF. It seems that appsheet sees this as an AND() expression, I have this problem in multiple forms. Is there a solution for this?
Previously this worked well.
Thanks in advance!
Solved! Go to Solution.
Taking a suggest from @Marc_Dillon, maybe it will help to describe to you in English what the expression is expected to do.
in your example you have an expression meant to be like this:
Show_If for [Col3] --- OR( ISBLANK( [col1] ) , ISBLANK( [col2] ) )
In english the result of this expression is:
The misunderstanding might be in the way OR's work. OR's return FALSE only if ALL of the internal conditions are FALSE. If any or all of the conditions are TRUE, the OR returns TRUE.
AND( ISBLANK( [col1] ) , ISBLANK( [col2] )
User | Count |
---|---|
15 | |
14 | |
8 | |
7 | |
4 |