Hello,
I am new to Alteryx and am trying to build a multi-conditional ELSEIF statement. It reads as follows:
IF [Age] <= "30" THEN "0-30"
ELSEIF [Age] <= "60" THEN "30-60"
ELSEIF [Age] <= "90" THEN "60-90"
ELSE [Age]="90+"
ENDIF
When I try to type the "ENDIF" if removes the color and reads an error message. The [Age] column is currently a Double format (previously created in workflow using formula tool: (DateTimeDiff([Cash_Receipt_Date],[Sales_Order_Date],"days") and the new column I am trying to create is a V_Wstring format. I am not sure what I am doing wrong! Thank you.