Calculate season record

Summarize wins, draws, losses, table points, scoring difference, and ordered form from match rows.

freeworks offlinenothing uploaded
ToolSeason Record Calculator
Input
Output
Put this on your own site

The frame below runs the same code as this page, in the reader's own browser. Nothing is sent to us, and nothing is sent to you.

Pick a dark background and the text and panels follow it, so the frame stays readable on a dark page.

Preview

How it works

Each W, D, or L row increments its result count and adds finite non-negative scores for and against. Points equal wins multiplied by the selected win value plus draws multiplied by the draw value; difference is total scored minus total conceded.

  • Three points for a win and one for a draw are editable defaults common in association football.
  • No competition-specific tiebreak order is inferred.

Worked example

Calculate season record
Input
											Results: W, 3, 1
D, 2, 2
L, 0, 1
Win points: 3
Draw points: 1
										
Output
												Played: 3
Wins: 1
Draws: 1
Losses: 1
Table points: 4
Scored: 5
Conceded: 4
Difference: 1
Form: WDL
											

When to use this

Football recaps calculate points and goal difference, recreational leagues use custom values, and recent results become an ordered WDL form string.

Edge cases

  • A negative or nonnumeric score is rejected instead of reducing the total or producing NaN.
  • The W, D, or L marker is trusted even when raw scores disagree because shootouts and administrative results can differ.
  • Equal points do not settle rank because head-to-head, scores, discipline, and other competition tiebreakers are absent.