I created what I thought was a simple nested IF statement, but got hit with an #INVALID DATA TYPE error.
Both columns have the Column Type = Text/Number
All "State" fields are populated with valid 2 character US state abbreviations.
What am I missing?
Formula:
=IF(OR(State@row, "AL", State@row, "KS", State@row, "MI", State@row, "MN", State@row, "OR", State@row, "SD", State@row, "WY", State@row, "CT"), "Redemption"
,IF(OR(State@row, "CA", State@row, "IL", State@row, "NE", State@row, "FL", State@row, "HI", State@row, "KY", State@row, "NC", State@row, "OK", State@row, "WI"), "Confirmation"
,IF(OR(State@row, "VT", State@row, "NM", State@row, "OH"), "Both"
, "N/A")))