Hello there! I hope I am not posting something that has already been asked, but I have been searching for days for a solution with no luck. I will do my best to describe what I am looking for and appreciate any help in advance. I am fairly new to Alteryx and this is my first post so please bear with me!
I have a specific field that is populated with values identifying how members come to my credit union. I want to exclude new members using a date field based on this text field so they are not included in my final output file. Here is what I am trying to use as my formula to create a flag to filter on, but I am receiving a malformed statement error on the ENDIF portion. I am sure I am doing something silly, but I have been staring at this filter for so long and have tried so many variations that I don't know what else to try at this point.
IF [Member SEG] ="INDMORT" OR [Member SEG] = "INDIRECT MORTGAGE" AND [Share Open Date]>=DateTimeAdd(DateTimeToday(),-14,'days') THEN "Disqualified" ELSEIF [Member SEG] = "%" THEN "KEEP" ENDIF
Thanks again!