IF Statement Help! Tiered Question

UrbanJungleFashion

New Member
Joined
Oct 14, 2014
Messages
17
A B C D E F

GoalStretch Goal 1 (5)Stretch Goal 2 (10)Stretch Goal 3 (15)Actual
Store 11920212225
Store 22931323335
Store 389101116

<colgroup><col span="6"></colgroup><tbody>
</tbody>


The End Result Needed:

If the store reaches it's stretch goal 1 they qualify for 5 points. If they meet strectch goal 2 they get 10 points. If they meet stretch goal three then they get 15 points.

When I put this formula =IF(F1<C1,5,IF(F1<D1,10,IF(F1<E1,15,0)))

When i put this formula in I keep getting zero.

Will someone PLEASE help me with this?

Thank You!
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Hi, this idd not help me. Is there another formula you can suggest? I tried

=IF(F2<=C2,5,(IF(F2<=D2,10,(IF(F2<=E2,15,0)))))

Your operators are backwards. Try:

=IF(F2>=E2,15,IF(F2>=D2,10,IF(F2>=C2,5,0)))

But this does exactly the same thing as my original formula....
 
Upvote 0
Excel Workbook
ABCDEFG
151015
2GoalStretch Goal 1Stretch Goal 2Stretch Goal 3ActualScore
3Store 1192021222515
4Store 2293132333515
5Store 38910111615
Sheet2
 
Upvote 0
Sheet2

*ABCDEFG
1**51015**
2*GoalStretch Goal 1Stretch Goal 2Stretch Goal 3ActualScore
3Store 1192021222515
4Store 2293132333515
5Store 38910111615

<colgroup><col style="font-weight:bold; width:30px; "><col style="width:64px;"><col style="width:64px;"><col style="width:64px;"><col style="width:64px;"><col style="width:64px;"><col style="width:64px;"><col style="width:64px;"></colgroup><tbody>
</tbody>

Spreadsheet Formulas
CellFormula
G3=IFERROR(INDEX($B$1:$E$1,MATCH(F3,B3:E3,1)),0)
G4=IFERROR(INDEX($B$1:$E$1,MATCH(F4,B4:E4,1)),0)
G5=IFERROR(INDEX($B$1:$E$1,MATCH(F5,B5:E5,1)),0)

<tbody>
</tbody>

<tbody>
</tbody>


Excel tables to the web >> Excel Jeanie HTML 4


THANK YOU SO MUCH!!! That was the perfect solution to my problem!!!!!!!
 
Upvote 0

Forum statistics

Threads
1,215,754
Messages
6,126,681
Members
449,328
Latest member
easperhe29

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