Gsa Mileage Rate 2020 Calculator

.gsa-calculator-container { font-family: sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; border: 1px solid #e0e0e0; border-radius: 8px; background-color: #f9f9f9; } .gsa-calc-header { text-align: center; margin-bottom: 25px; } .gsa-calc-header h2 { margin: 0; color: #333; } .gsa-input-group { margin-bottom: 15px; } .gsa-input-group label { display: block; margin-bottom: 5px; font-weight: bold; color: #555; } .gsa-input-group input[type="number"], .gsa-input-group select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; /* Ensures padding doesn't affect width */ } .gsa-calc-button { width: 100%; padding: 12px; background-color: #0056b3; color: white; border: none; border-radius: 4px; font-size: 16px; cursor: pointer; transition: background-color 0.3s ease; } .gsa-calc-button:hover { background-color: #004494; } #gsaResultOutput { margin-top: 20px; padding: 15px; background-color: #e9ecef; border-radius: 4px; text-align: center; font-size: 18px; color: #333; } .gsa-article-content { margin-top: 40px; line-height: 1.6; color: #333; } .gsa-article-content h3 { color: #0056b3; margin-top: 25px; } .gsa-rate-table { width: 100%; border-collapse: collapse; margin: 20px 0; } .gsa-rate-table th, .gsa-rate-table td { border: 1px solid #ddd; padding: 12px; text-align: left; } .gsa-rate-table th { background-color: #0056b3; color: white; }

2020 GSA Mileage Reimbursement Calculator

Privately Owned Automobile (No GOV available) – $0.575/mile Privately Owned Automobile (GOV available) – $0.17/mile Privately Owned Motorcycle – $0.545/mile Privately Owned Airplane – $1.27/mile
function calculateGSA2020Reimbursement() { // 1. Get inputs var milesInput = document.getElementById('milesDriven2020').value; var rateSelect = document.getElementById('vehicleSituation2020').value; // 2. Parse values var miles = parseFloat(milesInput); var rate = parseFloat(rateSelect); // 3. Get result element var resultElement = document.getElementById('gsaResultOutput'); // 4. Validate input if (isNaN(miles) || miles < 0) { resultElement.innerHTML = 'Please enter a valid, non-negative number of miles.'; return; } // 5. Calculate reimbursement var totalReimbursement = miles * rate; // 6. Format output to currency standards (2 decimal places) var formattedTotal = totalReimbursement.toFixed(2); // 7. Display result resultElement.innerHTML = 'Estimated 2020 Reimbursement: $' + formattedTotal + ''; }

Understanding the 2020 GSA Mileage Rates

The General Services Administration (GSA) establishes mileage reimbursement rates for federal employees who use privately owned vehicles (POV) for official government business. While these rates change annually, accessing historical data for tax filings, audits, or delayed reimbursement claims is crucial. This calculator specifically uses the official rates set for the calendar year **2020**.

Official 2020 POV Reimbursement Rates

For 2020, the GSA set distinct rates depending on the type of vehicle used and the availability of a Government Owned Vehicle (GOV). The standard rate for a privately owned automobile decreased slightly from the previous year.

Vehicle / Situation Rate Per Mile (2020)
Privately Owned Automobile (If no GOV available) $0.575
Privately Owned Automobile (If GOV is available but employee chooses POV) $0.17
Privately Owned Motorcycle $0.545
Privately Owned Airplane $1.27

How the Calculation Works

Calculating your reimbursement for 2020 travel is a straightforward multiplication of the total official miles driven by the applicable rate category.

The formula used is: Total Miles × 2020 Rate = Total Reimbursement

Calculation Example

Suppose a federal employee drove their personal car for 450 miles on official business in 2020 because no government vehicle was available. Using the standard automobile rate for that year ($0.575), the calculation would be:

450 miles × $0.575/mile = $258.75

If that same employee chose to use their own car when a government vehicle was available, the lower rate of $0.17 would apply:

450 miles × $0.17/mile = $76.50

Important Considerations for 2020 Claims

When dealing with historical mileage claims for 2020, ensure your records accurately reflect dates within that calendar year. Maintaining a compliant mileage log that includes the date, destination, business purpose, and total miles for every trip is essential for substantiating reimbursement claims or tax deductions based on these GSA rates.

Leave a Comment