Help with multiple if statements

Jmontet

New Member
Joined
Aug 6, 2017
Messages
2
Hey there i know there is something simple I am missing. I am trying to set up a formula that will pull data from a cell based on where another cell falls in line numerically
A B C
1 <2999 <9999 <250000
2 10 20 30

So basically if the number in a cell i specify lets say F49 is less than 2999 i need it to display the value in cell A2, if it is between 2999 and 9999 i need it show the value in cell B2, and if over 99999 it displays value of C2
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Hia & welcome to the board
How about this
=IF(F49<2999,A2,IF(AND(F49>=2999,F49<=9999),B2,C2))
 
Upvote 0

Excel 2010
ABC
1029999999
2102030
3
42020
5
6b
Cell Formulas
RangeFormula
A4=LOOKUP(F49,A1:C1,A2:C2)
B4=INDEX(A2:C2,MATCH(F49,A1:C1,1))
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,223,897
Messages
6,175,270
Members
452,628
Latest member
dd2

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