I misinterpretted the "Need to re-evaluate" section.
Perhaps something like this regular formula could be used:
=INDEX({"U";"N";"N";"S";"U";"I";"S";"I";"I";"I"},
MATCH(COUNTIF(A1:C1,"I")&COUNTIF(A1:C1,"S")&COUNTIF(A1:C1,"U"),
{"003";"012";"021";"030";"102";"111";"120";"201";"210";"300"},0))
Where each digit indicates the count of the letters I, S, and U (respectively)
or...using this lookup range in Y1:Z11
ISU Score
003 U
012 N
021 N
030 S
102 U
111 I
120 S
201 I
210 I
300 I
and this regular formula
=VLOOKUP(COUNTIF(A1:C1,"I")&COUNTIF(A1:C1,"S")&COUNTIF(A1:C1,"U"),$Y$2:$Z$11,2,0)
Is that something you can work with?
Bookmarks