NFL Passer Rating Calculator
The NFL passer rating is a single number that summarises a quarterback’s passing efficiency using just five box-score stats. This calculator implements the exact official formula the NFL has used since 1973, computing each of the four weighted components and combining them into a final rating between 0 and 158.3.
How it works
The rating is built from four components, each measuring a different aspect of passing efficiency, where ATT is attempts:
a = ((Completions / ATT) - 0.3) * 5
b = ((Yards / ATT) - 3) * 0.25
c = (Touchdowns / ATT) * 20
d = 2.375 - ((Interceptions / ATT) * 25)
Each of a, b, c, and d is clamped so it cannot fall below 0 or rise above 2.375. The four clamped values are then summed and scaled:
Passer Rating = ((a + b + c + d) / 6) * 100
Because each component maxes out at 2.375, the sum maxes at 9.5, and (9.5 / 6) * 100 = 158.33, which is why a perfect game caps at 158.3.
Example and notes
For a line of 25 completions on 35 attempts, 310 yards, 3 TDs, and 1 INT: completion rate is 0.714 so a = (0.714 - 0.3) * 5 = 2.071; yards/attempt is 8.857 so b = (8.857 - 3) * 0.25 = 1.464; TD rate gives c = (3/35) * 20 = 1.714; INT rate gives d = 2.375 - (1/35 * 25) = 1.661. Summing and scaling produces a rating near 114.6.
Tips: passer rating rewards avoiding interceptions heavily, since the d component starts at its maximum and only decreases. The metric ignores rushing, sacks, and game context, so pair it with Total QBR or EPA for a fuller picture of quarterback play.