Fantasy Football Spreadsheet

CChiz5

New Member
Joined
Sep 7, 2011
Messages
12
Hey guys,

I have a question regarding a fantasy football calculation.

Im doing the stats for our league on excel and cant figure out how to add in a bonus for a certain amount of yards gained.

I have the formula correct that gives 1 point for every 25 passing yards, at 300 yards we get a 5 point bonus.

So 300 yards would equal 17 with the bonus. How can I import this bonus into the same formula without having to create another column.

Thanks
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
=ROUNDUP(Yards/25,1)+IF(Yards>300,5,0)

Assuming you want to round up your yards points.

Change "Yards" to whatever Cell your yards are in.

If you want 5 points for 300 yards, change it to
=ROUNDUP(Yards/25,1)+IF(Yards>=300,5,0)

Otherwise it will give 5 points from 301 yards (or 300.1 yards).
 
Upvote 0
if i wanted to add 5 more points for 400 yards would i just do the same thing and instead of 300 add another one listing 400?
 
Upvote 0
Im having an issue with the math before the bonus amounts.

Its 1 point for every 25 yards.

How come when I enter 20 yards it still gives it 1 point, when in reality it should say 0.

here is my current formula.

=IF(H7>=300,(5),(0))+IF(H7>=400,(5),(0))+H7/25
 
Upvote 0
Because 20/25 = .8 which rounds up to 1.

If you want fractional values to be lower, change to:
=IF(H7>=300,(5),(0))+IF(H7>=400,(5),(0)+ROUNDDOWN(H7/25,0)
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,280
Members
452,902
Latest member
Knuddeluff

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