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.