Multiple Between formulas to return a Score.

ajay_gajree

Well-known Member
Joined
Jul 16, 2011
Messages
518
<3 10
3 to <6 8
6 to <10 6
10 to <15 4
15 to <20 2
20 to <30 0
30+

Hi I have a set of data with Criteria above for a scorecard.

I want to write a formula so that depending on where a value falls in the LH column, I can return its score from the RH Column.

Is there an easy way to do this?

So if I had a value 11, I want to return a score of 4 in the cell.

I'm sure this must be fairly straight forward!

Best regards
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
see if this will help you
Excel Workbook
LCLDLELFLGLHLI
1010114
238
366
4104
5152
6200
Sheet3
Excel 2007
Cell Formulas
RangeFormula
LI1=LOOKUP(LH1,LC1:LC7,LD1:LD7)
 
Upvote 0
Thank you for your help, but I think I was not clear, my range are Percentages,

I got the answer elsewhere,

The formula was

=IF((LEN(K14)=0),"Missing data",IF(K14>=0.3,0,IF(K14>=0.2,1,IF(K14>=0.15,2,IF(K14>=0.1,4,IF(K14>=0.06,6,IF(K14>=0.03,8,IF(K14>=0,10,"Error"))))))))

Where K14 is my Percentage rate.

Thanks all.
 
Upvote 0
try this

Code:
=IF((LEN(K14)=0),"Missing data",LOOKUP(K14,{0;0.03;0.06;0.1;0.15;0.2},{10;8;6;4;2;1}))
 
Upvote 0

Forum statistics

Threads
1,224,599
Messages
6,179,828
Members
452,946
Latest member
JoseDavid

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top