So i have a form where you can choose between two options "Remove" or "Return"
Another section of the form ask how much?
Is there an expression to use if the choose the option to "Remove" that the value can either be 0 or a negative value and vice verse with Return with positive values?
Would this be an OR statement?
Solved! Go to Solution.
IFS(
IN("Return", [Options]), [_This] > 0,
IN("Remove", [Options]), [_This] <= 0,
TRUE, TRUE
)
User | Count |
---|---|
25 | |
15 | |
4 | |
3 | |
3 |