Currently trying to populate column 3 based on value in column 1 - if column 1 not equal to 1 populate column 3 with "NONE"
My Statement is as follows:
IIF([Column1]!="1", "NONE", [Column3])
The error I am getting is saying there is an invalid operator of "!=", however I often use this operator in other conditional statements. Where am I going wrong?
I should add, column 1 is not a boolean data type and confirmed Alteryx is not comprehending it as such via select tool.
thank you,