IF Statement Help! Tiered Question

UrbanJungleFashion

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

[TABLE="width: 384"]
<colgroup><col span="6"></colgroup><tbody>[TR]
[TD][/TD]
[TD]Goal[/TD]
[TD]Stretch Goal 1 (5)[/TD]
[TD]Stretch Goal 2 (10)[/TD]
[TD]Stretch Goal 3 (15)[/TD]
[TD]Actual[/TD]
[/TR]
[TR]
[TD]Store 1[/TD]
[TD]19[/TD]
[TD]20[/TD]
[TD]21[/TD]
[TD]22[/TD]
[TD]25[/TD]
[/TR]
[TR]
[TD]Store 2[/TD]
[TD]29[/TD]
[TD]31[/TD]
[TD]32[/TD]
[TD]33[/TD]
[TD]35[/TD]
[/TR]
[TR]
[TD]Store 3[/TD]
[TD]8[/TD]
[TD]9[/TD]
[TD]10[/TD]
[TD]11[/TD]
[TD]16
[/TD]
[/TR]
</tbody>[/TABLE]


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

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
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
****
*GoalStretch Goal 1Stretch Goal 2Stretch Goal 3ActualScore
Store 1
Store 2
Store 3

<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>
[TD="bgcolor: #cacaca, align: center"]1[/TD]

[TD="align: right"]5[/TD]
[TD="align: right"]10[/TD]
[TD="align: right"]15[/TD]

[TD="bgcolor: #cacaca, align: center"]2[/TD]

[TD="bgcolor: #cacaca, align: center"]3[/TD]

[TD="align: right"]19[/TD]
[TD="align: right"]20[/TD]
[TD="align: right"]21[/TD]
[TD="align: right"]22[/TD]
[TD="align: right"]25[/TD]
[TD="align: right"]15[/TD]

[TD="bgcolor: #cacaca, align: center"]4[/TD]

[TD="align: right"]29[/TD]
[TD="align: right"]31[/TD]
[TD="align: right"]32[/TD]
[TD="align: right"]33[/TD]
[TD="align: right"]35[/TD]
[TD="align: right"]15[/TD]

[TD="bgcolor: #cacaca, align: center"]5[/TD]

[TD="align: right"]8[/TD]
[TD="align: right"]9[/TD]
[TD="align: right"]10[/TD]
[TD="align: right"]11[/TD]
[TD="align: right"]16[/TD]
[TD="align: right"]15[/TD]

</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,223,162
Messages
6,170,431
Members
452,326
Latest member
johnshaji

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