Nested IFS Statement - HELP

chelleross

New Member
Joined
Apr 4, 2018
Messages
1
I am trying to type an IFS statement that will look at one cell and decide on the answer based on a greater or lesser than decision.

10 sq. in. or below = $7.00
10 - 25 sq. in. = $10.00
25 - 50 sq. in. = $14.00
50 - 75 sq. in. = $17.00
75 - 100 sq. in.= $20.00
100 - 150 sq. in.= $23.00
150 - 200 sq. in.= $26.00
200 sq. in. or higher = $36.00

How would I write the statement?

Data cell
E2 that has 11
E3 that has 26
E4 that has 52
E5 that has 100
E6 that has 179
E7 that has 226


This was my first attempt at something so complex...but does not work.

=IFS(AND(E2<=10, Pricing!$B$2), (E2>10, E2<25, Pricing!$B$3), (E2>25, E2<50, Pricing!$B$4), (E2>50, E2<75, Pricing!$B$5), (E2>75<100, Pricing!$B$6), (E2>100, E2<150, Pricing!$B$7), (E2>150, E2<200, Pricing!$B$8), (E2>200, Pricing!$B$9)

Thanks in advance for your quick help!
Chelle
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Hi,

Another way:


Excel 2010
ABCDEF
1Sq in$$
20$7.009$7.00
311$10.0010$7.00
426$14.0011$10.00
551$17.0026$14.00
676$20.0052$17.00
7101$23.00100$20.00
8151$26.00179$26.00
9201$36.00226$36.00
Sheet8
Cell Formulas
RangeFormula
F2=LOOKUP(E2,A$2:A$9,B$2:B$9)


F2 formula copied down.

BTW, your Sq. in. Table has overlaps in your OP, both njimack and I are assuming 10 or below = $7, 11 to 25 = $10, 26 to 50 = $14, etc.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,755
Members
448,989
Latest member
mariah3

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