I need to have multiple IF statements along with "OR". I am not getting the results I wanted. Here is what I have:
State
Western NC
Eastern NC
Central NC
West FL
South FL
I want to use to say "IF [State] = "Western NC" OR "Eastern NC" OR "Central NC"
THEN "NC"
ELSEIF [State] = "West FL" OR "South FL"
THEN "FL"
ELSE [State]
END IF
I am only getting the first value of each IF statement. Can anyone help?
Thanks!