Hello,
Trying to get the following formula to work in order to categorize data, but I keep getting a "Malformed If Statement" error:
if [buyer] = "Zone_1" or "Zone_2" or "Zone_3" then "North Region" else if [buyer] = "Zone_A" or "Zone_B" or "Zone_C" then "East Region" else if "Zone1A" or "Zone_2B" or "Zone_3C" or "Zone_4D" or "Zone_5E" or "Zone_6F" or "Zone_7G" then "West Region" else if [buyer] = "ABCD" or "1234" or "A1B2C3D4" then "South Region" else "" endif
I set the data type to String (same as the buyer field), not sure what I am doing wrong. The error seems to be focused on how I am ending the if statement though I could be misunderstanding that. Any assistance is appreciated.