Formula Help: Priority symbol based on numerical value
I am trying to prioritize stakeholders based on a numerical value (5 & 6 = High, 2-4 = Medium, 0 & 1 = Low). Why is the below formula returning as unparseable?
=IF(Total@row < "2", "Low"), IF([total]@row > "4", "High"), IF(AND([total]@row = "2", [total]@row = "3", [total]@row = "4"), "Medium")