Mileage Reimbursement Rate 2020 Calculator

.calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e1e1; border-radius: 8px; background-color: #f9f9f9; box-shadow: 0 2px 4px rgba(0,0,0,0.1); } .calc-header { text-align: center; margin-bottom: 25px; } .calc-group { margin-bottom: 15px; } .calc-label { display: block; font-weight: bold; margin-bottom: 5px; color: #333; } .calc-input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 16px; } .calc-select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 16px; background-color: white; } .calc-btn { width: 100%; background-color: #0073aa; color: white; padding: 12px; border: none; border-radius: 4px; font-size: 18px; cursor: pointer; margin-top: 10px; } .calc-btn:hover { background-color: #005177; } .calc-result { margin-top: 25px; padding: 20px; background-color: #e7f3ff; border-radius: 4px; display: none; } .result-value { font-size: 24px; font-weight: bold; color: #0073aa; } .article-section { margin-top: 40px; line-height: 1.6; color: #444; } .article-section h2 { color: #222; border-bottom: 2px solid #0073aa; padding-bottom: 10px; } .article-section table { width: 100%; border-collapse: collapse; margin: 20px 0; } .article-section th, .article-section td { border: 1px solid #ddd; padding: 12px; text-align: left; } .article-section th { background-color: #f2f2f2; }

Mileage Reimbursement Rate 2020 Calculator

Calculate your tax-deductible mileage based on official 2020 IRS standard rates.

Business (57.5 cents/mile) Medical or Moving (17 cents/mile) Charitable Service (14 cents/mile)

Understanding the 2020 IRS Mileage Rates

For the tax year 2020, the Internal Revenue Service (IRS) set specific standard mileage rates used to calculate the deductible costs of operating an automobile for business, charitable, medical, or moving purposes. These rates apply to use of a car, van, pickup, or panel truck.

Category 2020 Rate per Mile
Business 57.5 cents
Medical or Moving 17 cents
Charitable 14 cents

How to Use the 2020 Mileage Calculator

To determine your total reimbursement or tax deduction for the 2020 period, follow these steps:

  1. Enter Total Miles: Input the total distance recorded in your mileage log for the 2020 calendar year.
  2. Select the Category: Choose whether the miles were driven for business, medical/moving, or charitable purposes.
  3. Review the Result: The calculator multiplies your mileage by the corresponding cents-per-mile rate to provide a total dollar amount.

Important 2020 Rules and Requirements

It is crucial to remember that the 2020 business mileage rate decreased slightly from the 2019 rate (which was 58 cents). Taxpayers always have the option of calculating the actual costs of using their vehicle rather than using the standard mileage rates, provided they maintain thorough records of all expenses including gas, oil, repairs, and insurance.

Example Calculation

If you drove 1,000 miles for business in 2020, your calculation would be: 1,000 miles × $0.575 = $575.00. If those same miles were for charitable work, the calculation would be: 1,000 miles × $0.14 = $140.00.

Keep in mind that under the Tax Cuts and Jobs Act, taxpayers cannot claim a miscellaneous itemized deduction for unreimbursed employee travel expenses. However, self-employed individuals and certain specific professions (like armed forces reservists or fee-basis state/local government officials) may still deduct business miles.

function calculateMileage() { var miles = document.getElementById('milesDriven').value; var rate = document.getElementById('mileageType').value; var resultArea = document.getElementById('resultArea'); var resultText = document.getElementById('resultText'); if (miles === "" || isNaN(miles) || parseFloat(miles) <= 0) { alert("Please enter a valid number of miles driven."); resultArea.style.display = "none"; return; } var totalMiles = parseFloat(miles); var ratePerMile = parseFloat(rate); var totalReimbursement = totalMiles * ratePerMile; var categoryLabel = ""; if (rate == "0.575") categoryLabel = "Business"; else if (rate == "0.17") categoryLabel = "Medical/Moving"; else if (rate == "0.14") categoryLabel = "Charitable"; resultText.innerHTML = "Calculation Summary:" + "Category: " + categoryLabel + "" + "Rate: $" + ratePerMile.toFixed(3) + " per mile" + "Total Miles: " + totalMiles.toLocaleString() + "" + "Total 2020 Reimbursement: $" + totalReimbursement.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}) + ""; resultArea.style.display = "block"; }

Leave a Comment