NFL Passer Rating Calculator

Calculate an NFL quarterback's passer rating from game stats.

Enter completions, attempts, yards, touchdowns, and interceptions to compute the official NFL passer rating using the four-component (a+b+c+d) divided by 6, times 100, over 6 formula with each component capped between 0 and 2.375.

What is the maximum NFL passer rating?

The maximum possible NFL passer rating is 158.3, often called a perfect passer rating. It happens when all four components hit their cap of 2.375, which requires a high completion percentage, high yards per attempt, frequent touchdowns, and zero interceptions.

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.