Multiple "IF" statement

Wadecb7

New Member
Joined
Sep 29, 2010
Messages
8
Good Morning

I need to do a multiple "IF" statement and have no clue how to do it.

Please help

E.g:

3500 up = 1
1000 - 3499 = 2
350 - 999 = 3
100 - 349 = 4
0 - 99 = 5

Thanks
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Hi there,

Though you could use a nested IF statement, try this (just change the cell reference to suit):

=IF(ISNUMBER(A31)=TRUE,LOOKUP(A31,{0,100,350,1000,3500},{5,4,3,2,1}),0)

Regards,

Robert
 
Upvote 0
Or, similar idea to Robert but make the 'lookup table' in your sheet rather than in the formula itself. Formula in B2 is copied down.

Excel Workbook
ABCDE
1
2286405
3421611004
42153503
510002
635001
7
Lookup Table
 
Upvote 0

Forum statistics

Threads
1,214,895
Messages
6,122,128
Members
449,066
Latest member
Andyg666

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