Hello -
I'm trying to write the following formula in Alteryx; wondering if anyone could help:
if [difference] <=1 and [difference] >=-1 then "round off"
else " " endif
So any value between -1 to +1 should be commented as 'Round off' except 'zero' it should be blank.
Output:
| Difference | Comment |
| -0.36 | Round off |
| -0.25 | Round off |
| 0 | |
| 0 | |
| 0.45 | Round off |