Cricket Net Run Rate Calculator Excel Free Download

Cricket Net Run Rate Calculator & Excel Tool body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 20px; background-color: #f4f7f6; } .nrr-container { max-width: 800px; margin: 0 auto; background: #fff; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); overflow: hidden; } .nrr-header { background: #2E7D32; /* Cricket Green */ color: #fff; padding: 20px; text-align: center; } .nrr-header h2 { margin: 0; font-size: 24px; } .nrr-calc-wrapper { padding: 25px; display: flex; flex-wrap: wrap; gap: 20px; } .nrr-form { flex: 1; min-width: 300px; } .nrr-group { margin-bottom: 15px; } .nrr-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 14px; color: #2E7D32; } .nrr-group input { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .nrr-group .hint { font-size: 12px; color: #666; margin-top: 2px; } .nrr-actions { display: flex; gap: 10px; margin-top: 20px; } .btn-calc { background: #2E7D32; color: white; border: none; padding: 12px 24px; border-radius: 4px; cursor: pointer; font-weight: bold; flex: 1; font-size: 16px; } .btn-calc:hover { background: #1B5E20; } .btn-reset { background: #f44336; color: white; border: none; padding: 12px 20px; border-radius: 4px; cursor: pointer; font-weight: bold; } .btn-excel { background: #217346; /* Excel Green */ color: white; border: none; padding: 10px 20px; border-radius: 4px; cursor: pointer; font-weight: bold; text-decoration: none; display: inline-block; margin-top: 15px; text-align: center; width: 100%; box-sizing: border-box; } .nrr-result-box { flex: 1; min-width: 250px; background: #e8f5e9; border: 1px solid #c8e6c9; border-radius: 8px; padding: 20px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; } .result-value { font-size: 48px; font-weight: 800; color: #2E7D32; margin: 10px 0; } .result-label { font-size: 16px; color: #555; font-weight: 600; } .breakdown { margin-top: 15px; font-size: 14px; text-align: left; width: 100%; border-top: 1px solid #c8e6c9; padding-top: 15px; } .breakdown-row { display: flex; justify-content: space-between; margin-bottom: 5px; } .article-content { max-width: 800px; margin: 40px auto; padding: 0 20px; background: #fff; border-radius: 8px; } .article-content h2 { color: #2E7D32; } .article-content h3 { color: #333; margin-top: 25px; } .article-content p { margin-bottom: 15px; color: #444; } .formula-box { background: #f8f9fa; border-left: 4px solid #2E7D32; padding: 15px; font-family: monospace; margin: 20px 0; overflow-x: auto; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ddd; padding: 10px; text-align: left; } th { background-color: #2E7D32; color: white; } @media (max-width: 600px) { .nrr-calc-wrapper { flex-direction: column; } }

Cricket Net Run Rate (NRR) Calculator

Team Batting Performance

Use 19.3 for 19 overs and 3 balls

Team Bowling Performance

Current Net Run Rate
Runs For: 0
True Overs Faced: 0
Team Run Rate: 0.00

Runs Against: 0
True Overs Bowled: 0
Opponent Run Rate: 0.00

Net Run Rate Calculator for Cricket

Net Run Rate (NRR) is the most critical tie-breaker method used in cricket tournaments around the world, including the IPL, ICC World Cup, and T20 leagues. Understanding how it is calculated can help teams strategize exactly what margin of victory is required to qualify for semi-finals or playoffs.

How is Net Run Rate Calculated?

The NRR is essentially the difference between a team's scoring rate and the rate at which they concede runs.

NRR Formula:
NRR = (Total Runs Scored / Total Overs Faced) – (Total Runs Conceded / Total Overs Bowled)

Step-by-Step Calculation Logic

  1. Calculate Team Run Rate: Divide the total runs scored by the team in the tournament by the total overs faced.
  2. Calculate Opponent Run Rate: Divide the total runs conceded by the team by the total overs bowled.
  3. Subtract: Deduct the Opponent Run Rate from the Team Run Rate.

Important Rules for Overs Calculation

When using this calculator or creating your own Excel sheet, remember the unique way cricket handles overs:

  • Decimal Inputs: In cricket, "10.3" means 10 overs and 3 balls. Mathematically, 3 balls is half an over (3/6 = 0.5). Therefore, 10.3 overs converts to 10.5 for division purposes.
  • All Out Rule: If a team is bowled out (all out) before their full quota of overs is completed (e.g., in 18.2 overs of a 20 over match), the calculation counts the full quota (20 overs) as "Overs Faced". However, this calculator allows you to input the exact values, so ensure you input the full quota if the team was all out.

Excel Formula for Net Run Rate

If you are building your own "cricket net run rate calculator excel" sheet, you can use the following logic in your cells. Assuming the standard cricket over notation (e.g., 4.3) is converted to proper decimals first:

Metric Cell Value Example
Runs Scored A2 160
Overs Faced B2 20
Runs Conceded C2 140
Overs Bowled D2 20
NRR Formula E2 =(A2/B2)-(C2/D2)

Note: If you record overs as 4.3 (4 overs 3 balls), you must use a helper column in Excel to convert that to 4.5 before dividing.

Why Use This Tool?

This tool instantly handles the complex conversion of "balls" into decimal fractions, ensuring your NRR calculation is accurate to three decimal places. You can also download your calculation as a CSV file compatible with Microsoft Excel, Google Sheets, or Apple Numbers.

function parseOvers(oversInput) { // Convert input (string or number) to a string to handle splitting var str = oversInput.toString(); var parts = str.split('.'); var fullOvers = parseInt(parts[0]) || 0; var balls = parts[1] ? parseInt(parts[1]) : 0; // Handle edge case like 10.10 (which isn't valid cricket notation usually, but might happen) // Strictly in cricket notation x.1 to x.5 if (balls >= 6) { // If someone types 10.6, technically that is 11 overs, but let's treat strictly as balls // Standardizing logic: ball part shouldn't exceed 5 normally. // If user enters 10.6, we treat it as 10 + 6/6 = 11. } // Calculation: Full overs + (Balls / 6) return fullOvers + (balls / 6); } function calculateNRR() { // Get Inputs var runsScored = parseFloat(document.getElementById('runsScored').value); var oversFacedInput = document.getElementById('oversFaced').value; var runsConceded = parseFloat(document.getElementById('runsConceded').value); var oversBowledInput = document.getElementById('oversBowled').value; // Validation if (isNaN(runsScored) || !oversFacedInput || isNaN(runsConceded) || !oversBowledInput) { alert("Please fill in all fields with valid numbers."); return; } // Convert Overs to Decimal for Math (Base 6 logic) var trueOversFaced = parseOvers(oversFacedInput); var trueOversBowled = parseOvers(oversBowledInput); if (trueOversFaced === 0 || trueOversBowled === 0) { alert("Overs cannot be zero."); return; } // Calculate Rates var runRateFor = runsScored / trueOversFaced; var runRateAgainst = runsConceded / trueOversBowled; var nrr = runRateFor – runRateAgainst; // Display Results var resultElement = document.getElementById('nrrResult'); resultElement.innerText = (nrr > 0 ? "+" : "") + nrr.toFixed(3); if (nrr > 0) { resultElement.style.color = "#2E7D32"; // Green for positive } else if (nrr < 0) { resultElement.style.color = "#d32f2f"; // Red for negative } else { resultElement.style.color = "#333"; } // Update Breakdown document.getElementById('displayRunsFor').innerText = runsScored; document.getElementById('displayOversFor').innerText = trueOversFaced.toFixed(4); // Show decimal precision document.getElementById('displayTeamRR').innerText = runRateFor.toFixed(2); document.getElementById('displayRunsAgainst').innerText = runsConceded; document.getElementById('displayOversAgainst').innerText = trueOversBowled.toFixed(4); document.getElementById('displayOppRR').innerText = runRateAgainst.toFixed(2); document.getElementById('breakdownSection').style.display = "block"; } function resetCalculator() { document.getElementById('runsScored').value = ''; document.getElementById('oversFaced').value = ''; document.getElementById('runsConceded').value = ''; document.getElementById('oversBowled').value = ''; document.getElementById('nrrResult').innerText = '–'; document.getElementById('nrrResult').style.color = "#2E7D32"; document.getElementById('breakdownSection').style.display = "none"; } function downloadCSV() { var runsScored = document.getElementById('runsScored').value; var oversFaced = document.getElementById('oversFaced').value; var runsConceded = document.getElementById('runsConceded').value; var oversBowled = document.getElementById('oversBowled').value; var nrr = document.getElementById('nrrResult').innerText; if (nrr === '–') { alert("Please calculate the NRR first before downloading."); return; } // Create CSV Content var csvContent = "data:text/csv;charset=utf-8,"; csvContent += "Metric,Value\n"; csvContent += "Total Runs Scored," + runsScored + "\n"; csvContent += "Total Overs Faced," + oversFaced + "\n"; csvContent += "Total Runs Conceded," + runsConceded + "\n"; csvContent += "Total Overs Bowled," + oversBowled + "\n"; csvContent += "Net Run Rate," + nrr + "\n"; // Create Download Link var encodedUri = encodeURI(csvContent); var link = document.createElement("a"); link.setAttribute("href", encodedUri); link.setAttribute("download", "cricket_nrr_calculation.csv"); document.body.appendChild(link); // Required for FF link.click(); document.body.removeChild(link); }

Leave a Comment