Solved! Go to Solution.
Hey @kschulke
What error do you get?
Your statement looks good but without more information its hard to diagnose
Hi @kschulke
I think you're probably getting the operator wrong.
IIf (Balance 12.31.2018=0 AND Balance 6.30.2018!=0, "New", "No")
Use != instead of <>
Also, check for datatypes.
Cheers,
I found two issues here:
You need brackets around your field names (since there is a space in them), and Alteryx does not use <> as "Not equals", instead it uses !=
IIf ([Balance 12.31.2018]=0 AND [Balance 6.30.2018]!=0, "New", "No")