Okay, I probably made it more complicated than it needed to be (see attached)
but I have the user entering the Indicator and the Score and the spreadsheet telling them if the score matches the indicator. I also used MATCH and INDEX to keep the top to bottom scale.
With the Table in A16:C28, and indicator entered into E17, Score into F17; the formula to check to see if they are compatable is
=IF(INDEX($A$16:$A$28,MATCH(F17,$B$16:$B$28,-1),1)=E17,"Yes","No")
and the formula to get the percent is
=INDEX($C$16:$C$28,MATCH(F17,$B$16:$B$28,-1),1)
Bookmarks