I need to link numbers to text so I can trigger conditional formatting for Icon sets. In the simplest way possible I need to link like this.
Minor = 1
Medium = 2
Urgent = 3
The text is selected from a dropdown via data validation. I need to tag a number to the list item and send the number to the cell next to it so I can trigger conditional formatting.
The only issue is, I'm not to well veresed on Excel any assistance would be greatly appreciated.
Heres what I have thus far.
=IF(F7<>"Minor","1","0",IF(F7<>"Medium","2","0",IF(F7<>"Urgent","3","0")))