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
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