I have a score card with a computed percentage grade (e.g., 84) that I want to turn into an easy letter grade for my stakeholders.
Rather than using a huge nested IF formula I thought I'd try to use SWITCH to compare and create some values.
SWITCH(
{% GRADE},
>=93, 'A',
<=64, 'F'
)
But I keep getting a generic Sorry, there was a problem creating this field. Invalid formula. Please check your formula text. error message.
I can't find anything in the help documents talking about using comparison operators like =, >=, <= with SWITCH.
Is what I'm trying to do even possible or am I stuck with that massive nested IF statement?
Thanks in advance,
Anne