NFL QB Rating

Doggbreath

New Member
Joined
Jan 22, 2006
Messages
1
I am having trouble creating the formula for QB rating in Excel.

NFL Quarterback Rating Formula
(National Football League)
a = (((Comp/Att) * 100) -30) / 20
b = ((TDs/Att) * 100) / 5
c = (9.5 - ((Int/Att) * 100)) / 4
d = ((Yards/Att) - 3) / 4

a, b, c and d can not be greater than 2.375 or less than zero.

QB Rating = (a + b + c + d) / .06

I have most of this, but I don't know how to the "a, b, c and d can not be greater than 2.375 or less than zero" thing.

I have a, b, c and d in C2, D2, E2, F2 and G2. The numbers go to A2, A3, A4 and A5 and the overall rating goes to B6 (I do it like this because I want it to look clean and organized).

If anyone can tell me how to do this, I would be greatful for the help. Thanks in advance.
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Use If and Or:

something like:

=If(OR((((Comp/Att) * 100) -30) / 20 >2.375,(((Comp/Att) * 100) -30) / 20 <0),"",(((Comp/Att) * 100) -30) / 20)

replacing Comp and Att for actual cell references/names.

do the same thing for the others.
 
Upvote 0
I used the Median function to calculate NFL passer rating
 
Upvote 0

Forum statistics

Threads
1,214,522
Messages
6,120,019
Members
448,938
Latest member
Aaliya13

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