Custom School Grading Scale Builder

Build and test a custom grading scale for any institution.

Define your own percentage-to-letter-grade cutoffs and enter a list of percentage scores to batch-convert them to letter grades — useful for teachers designing new assessment rubrics or comparing scales.

How does the scale convert a score?

Each score is compared against your cutoffs from highest to lowest. The first letter whose minimum the score meets or exceeds wins. Any score below the D cutoff becomes an F. This is the same threshold logic gradebooks use.

Build and test a custom grading scale

Designing a fair grading rubric means picking cutoffs and then seeing how real scores land. This builder lets you define your own percentage-to-letter thresholds and instantly batch-convert a list of scores, with a distribution summary so you can tell at a glance whether your scale is too strict or too lenient before you commit to it.

How it works

You set a minimum percentage for each letter. Every score is checked against the cutoffs from highest to lowest, and the first one it meets wins:

if score >= cutoffA  -> A
else if score >= cutoffB -> B
else if score >= cutoffC -> C
else if score >= cutoffD -> D
else -> F

Cutoffs must descend (A ≥ B ≥ C ≥ D); the tool warns you otherwise. The distribution then tallies how many scores fall into each grade.

Tips and notes

  • Start from a familiar scale (90/80/70/60) and nudge cutoffs to see the effect on the distribution.
  • A heavily F-skewed distribution under reasonable cutoffs usually signals an assessment that was too hard, not students who underperformed.
  • Keep your cutoffs documented in the syllabus so the scale you build here matches what students are told.