Hello,
I am new to Alteryx. I am trying to recreate a formula that I built in SQL within Alteryx and it is proving to be quite difficult. Here is what I have built;
IF [Contract_Status]= "Accepted"
AND [product_id]= 153 OR [product_id]=155 OR [product_id]=157
AND [date_paid]>=2017-08-01 AND [date_paid]<=2017-12-31
THEN "Non-Renewal"
ELSE "Other"
ENDIF
When I run it I get the error "The field " " is not contained in the record. (Expression #1)"
Essentially what I am trying to say is if contract_status=accepted AND if product_id CONTAINS either 153 or 155 or 157 AND the date_paid falls in that range then call is "Non-Renewal"
What do I need to do differently?