I am trying to craft a formula that sources a numerical value in a different column and, based on that value, prints a skill level. Here's the formula:
=IF([Points]1 <99, IF([Points]1 <199, “Apprentice”, IF([Points]1 <499, “Amateur”, IF([Points]1 <999, “Pro”, IF([Points]1 <1999, “Veteran”, IF([Points]1 <= 3999, “Expert”, IF([Points]1 = 4000, “Master”)))))))
I keep getting the #UNPARSEABLE error. I have searched the forums for and found good ideas on how to make this work however, none of it seems to work for me.
Any ideas on what I'm missing?