Hi,
I gotten so much help here before, so once again... I have a column Total Rank Score where we assign points to each task.
I want to be able to group those into 3 categories. If value is between 0 and 7 = "Low", if between between 7 to 10= Medium , If over 10 points ="High"
=IF([Total Rank Score]@row <= 7, "LOW", IF([Total Rank Score]@row > 7, "MEDIUM", IF([Total Rank Score]@row > =10, "HIGH")))
But it seems to be missing something, because the HIGH never shows ups