Hello all,
I am trying to make cell A display the number of cell B and then put a prefix on it depending on the value of the number. Below is my criteria.
<49 "not relevant"
50-89 "Minor"
90-124 "Major"
>125 "Critical"
To test this, I did this formula, just to see if I could get the formula working.
=IF([Risk Priority Number]@row < 48, "Non Relevant", IF([Risk Priority Number]@row > 49 and < 89, "Minor", IF([Risk Priority Number]@row > 90 and < 124, "Major", "Crit")))
But it is giving me the #unparseable error.
Any assistance would be AMAZING! Thank you!!!