Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

General Discussions

Discuss any topics that are not product-specific here.
SOLVED

And if closing statement

darroyo01
6 - Meteoroid

Hello.

 

How do I close the last line without an error:  (Error: Formula (18): Parse Error at char(125): Malformed If Statement (Expression #3)

 

IF [COUNTRY_OF_ISSUE] = "MX"
AND IF [CURRENCY_CODE] = "MXN"
AND IF [CURR_AMORT_FACTR] = "100" THEN "Not Needed" ELSE "" ENDIF

 

Thanks in advance

 

2 REPLIES 2
binuacs
21 - Polaris

@darroyo01 

IF [COUNTRY_OF_ISSUE] = "MX" 
   AND [CURRENCY_CODE] = "MXN" 
   AND [CURR_AMORT_FACTR] = "100" THEN 
   "Not Needed" 
ELSE 
   "" 
ENDIF
darroyo01
6 - Meteoroid

Thank you so much!

Labels
Top Solution Authors