Trying to display a numerical priority scoring value for task items based on results from 3 input variables: URGENCY, EFFORT, IMPACT values with 1 being the highest value, 2 being the middle value, 3 being the lowest value. For example, if the task is most URGENT=1, most IMPACT=1, least EFFORT=3, that task should be scored with an overall value of "1" and the corresponding highest priority. If the task is least URGENT=3, least IMPACT=3, most EFFORT=1, that task should be scored as a value of "9" and the lowest priority.
I am not receiving #UNPARSEABLE message from formula below, but not getting any value generated either:
=IF(AND(URGENCY@row = "1", EFFORT@row = "3", IMPACT@row = "1"), 1, IF(AND(URGENCY@row = "1", EFFORT@row = "2", IMPACT@row = "1"), 2, IF(AND(URGENCY@row = "2", EFFORT@row = "3", IMPACT@row = "2"), 3, IF(AND(URGENCY@row = "1", EFFORT@row = "1", IMPACT@row = "1"), 4, IF(AND(URGENCY@row = "2", EFFORT@row = "2", IMPACT@row = "2"), 5, IF(AND(URGENCY@row = "2", EFFORT@row = "1", IMPACT@row = "2"), 6, IF(AND(URGENCY@row = "3", EFFORT@row = "3", IMPACT@row = "1"), 7, IF(AND(URGENCY@row = "3", EFFORT@row = "2", IMPACT@row = "3"), 8, IF(AND(URGENCY@row = "3", EFFORT@row = "1", IMPACT@row = "3"), 9)))))))))
Any ideas?