I have a sheet that is for prioritization purposes, there are multiple columns that aggregate value into a "Total Score" column, I want my "Priority" column to auto populate a value based on the value in total score ie if value 0-20 it should be P4 if it is 21-40 P3 if 41-60 P2 if 61-80 P1 if 81-100 P0. I used the following IF formula but get unparseable error
=IF([Total Score]@row = 100, "P0", IF([Total Score]@row < 80, "P1", IF([Total Score]@row < 60, "P2", IF([Total Score]@row < 40, "P3", IF([Total Score]@row < 20, "P4"))))))