formula for rating values

arniebun

New member
Joined
Jun 11, 2020
Messages
2
Reaction score
0
Points
0
Excel Version(s)
2019
Untitled.jpg
what I want to do as the image above, is rate the values if they are between the values on the right of the table by the values on the left. so if the far right column are lets say 3.77 in will take the rating value of the (display these numbers) so it will return a value of 9 in the Column which says (display numbers go here). Do I need to use java script for this, or can it be done in a long string?
 
If this hasn't been answered on the other forum you can use VLOOKUP. However, you need to sort the table on the right in ascending order from -2.5 to 5.5. Assuming that table is in E5:F21

Code:
=VLOOKUP(100*A3,$E$5:$F$21,2,TRUE)
 
Back
Top