Calculate Net Run Rate in Cricket

Net Run Rate (NRR) Calculator

Your Net Run Rate will appear here.

What is Net Run Rate (NRR)?

Net Run Rate (NRR) is a statistic used in multi-team cricket competitions to rank teams when they have the same number of points. It is calculated by taking the difference between a team's average runs scored per over and their average runs conceded per over, over the course of the tournament. A positive NRR indicates a team is performing better than average, while a negative NRR suggests they are performing below average.

The formula for NRR is:

NRR = (Total Runs Scored / Total Overs Played) – (Total Runs Conceded / Total Overs Bowled)

A higher NRR is generally preferred in league standings, as it can be the tie-breaker when teams are level on points. It's a crucial metric for understanding a team's overall performance and dominance throughout a competition.

How to Use This Calculator:

Simply enter the following information for your team throughout the competition:

  • Total Runs Scored: The sum of all runs your team has scored in all matches played so far.
  • Total Overs Played: The total number of overs your team has batted in all matches played so far.
  • Total Runs Conceded: The sum of all runs your team has conceded to opposition teams in all matches played so far.
  • Total Overs Bowled: The total number of overs your team has bowled in all matches played so far.

Click "Calculate NRR" to see your team's Net Run Rate.

Example Calculation:

Let's say in a tournament, a team has:

  • Total Runs Scored = 1500
  • Total Overs Played = 100
  • Total Runs Conceded = 1200
  • Total Overs Bowled = 95

Using the calculator:

  • Runs Scored per Over = 1500 / 100 = 15.00
  • Runs Conceded per Over = 1200 / 95 ≈ 12.63
  • NRR = 15.00 – 12.63 = 2.37

This team has a positive Net Run Rate of 2.37.

function calculateNRR() { var runsScored = parseFloat(document.getElementById("runsScored").value); var oversPlayed = parseFloat(document.getElementById("oversPlayed").value); var runsConceded = parseFloat(document.getElementById("runsConceded").value); var oversBowled = parseFloat(document.getElementById("oversBowled").value); var resultElement = document.getElementById("result"); if (isNaN(runsScored) || isNaN(oversPlayed) || isNaN(runsConceded) || isNaN(oversBowled)) { resultElement.innerHTML = "Please enter valid numbers for all fields."; return; } if (oversPlayed <= 0 || oversBowled <= 0) { resultElement.innerHTML = "Overs played and overs bowled must be greater than zero."; return; } var runsScoredPerOver = runsScored / oversPlayed; var runsConcededPerOver = runsConceded / oversBowled; var nrr = runsScoredPerOver – runsConcededPerOver; resultElement.innerHTML = "Your Net Run Rate (NRR) is: " + nrr.toFixed(2) + ""; } .cricket-calculator { font-family: sans-serif; border: 1px solid #ccc; padding: 20px; border-radius: 8px; max-width: 600px; margin: 20px auto; background-color: #f9f9f9; } .cricket-calculator h2 { text-align: center; color: #333; margin-bottom: 20px; } .cricket-calculator .inputs { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; margin-bottom: 20px; } .cricket-calculator .input-group { display: flex; flex-direction: column; } .cricket-calculator label { margin-bottom: 5px; font-weight: bold; color: #555; } .cricket-calculator input[type="number"] { padding: 10px; border: 1px solid #ddd; border-radius: 4px; font-size: 1em; } .cricket-calculator button { display: block; width: 100%; padding: 12px 20px; background-color: #007bff; color: white; border: none; border-radius: 5px; font-size: 1.1em; cursor: pointer; transition: background-color 0.3s ease; margin-bottom: 20px; } .cricket-calculator button:hover { background-color: #0056b3; } .cricket-calculator .result { text-align: center; font-size: 1.3em; color: #28a745; background-color: #e9ecef; padding: 15px; border-radius: 5px; margin-top: 20px; font-weight: bold; } .cricket-calculator .explanation { margin-top: 30px; border-top: 1px solid #eee; padding-top: 20px; color: #444; font-size: 0.95em; line-height: 1.6; } .cricket-calculator .explanation h3 { color: #333; margin-bottom: 10px; } .cricket-calculator .explanation ul { margin-left: 20px; margin-bottom: 15px; } .cricket-calculator .explanation ul li { margin-bottom: 5px; }

Leave a Comment