Gsa Mileage Rate 2023 Calculator

GSA Mileage Rate 2023 Calculator

Calculate your estimated reimbursement for official government travel using a Privately Owned Vehicle (POV) based on the official 2023 General Services Administration rates.

Automobile (Standard Rate – No Gov Vehicle Available) – $0.655/mile Automobile (If Gov Vehicle Available but POV Used) – $0.22/mile Motorcycle – $0.635/mile Airplane – $1.74/mile

Estimated Reimbursement:

$0.00

function calculateGSAReimbursement() { // Get input values var milesInput = document.getElementById('totalMiles').value; var rateInput = document.getElementById('vehicleRate').value; // Parse values to numbers var miles = parseFloat(milesInput); var rate = parseFloat(rateInput); // Get result elements var resultBox = document.getElementById('resultOutput'); var resultValue = document.getElementById('reimbursementValue'); // Validate inputs if (isNaN(miles) || miles < 0 || milesInput === "") { resultBox.style.display = "block"; resultValue.innerHTML = "Please enter a valid number of miles."; return; } // Calculate total reimbursement var totalReimbursement = miles * rate; // Display result formatted as currency resultBox.style.display = "block"; resultValue.innerHTML = "$" + totalReimbursement.toFixed(2); } .gsa-calculator-container { max-width: 600px; margin: 20px auto; padding: 20px; border: 1px solid #ddd; border-radius: 8px; background-color: #f9f9f9; font-family: sans-serif; } .gsa-calculator-container h2 { text-align: center; color: #333; } .calc-box { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); } .input-group { margin-bottom: 15px; } .input-group label { display: block; margin-bottom: 5px; font-weight: bold; color: #555; } .input-group input, .input-group select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; /* Ensures padding doesn't affect width */ } button { width: 100%; padding: 12px; background-color: #005ea2; color: white; border: none; border-radius: 4px; cursor: pointer; font-size: 16px; font-weight: bold; } button:hover { background-color: #004a87; } .result-box { margin-top: 20px; padding: 15px; background-color: #e8f4fd; border: 1px solid #bbdefb; border-radius: 4px; text-align: center; } .result-box h3 { margin: 0 0 10px 0; color: #005ea2; font-size: 18px; } #reimbursementValue { font-size: 28px; font-weight: bold; color: #28a745; margin: 0; }

Understanding the 2023 GSA POV Mileage Reimbursement Rates

The General Services Administration (GSA) establishes the mileage reimbursement rates for federal employees who use privately owned vehicles (POVs) for official government business. These rates are designed to cover the fixed and variable costs of operating a vehicle, including fuel, insurance, maintenance, and depreciation.

The rates below were effective from January 1, 2023, through December 31, 2023. It is crucial to use the correct rate corresponding to the year the travel took place.

Official 2023 Reimbursement Rates Breakdown

The reimbursement amount depends heavily on the type of vehicle used and whether a government-furnished vehicle was available for the trip. The calculator above uses these official 2023 figures:

  • Standard Automobile Rate ($0.655/mile): This rate applies when a privately owned automobile is used for official travel, and no government-owned vehicle is available. This was an increase from the mid-2022 rate.
  • Alternate Automobile Rate ($0.22/mile): This lower rate applies if a government vehicle is available, but the employee chooses to use their own privately owned vehicle instead.
  • Motorcycle Rate ($0.635/mile): The standard reimbursement rate for using a privately owned motorcycle for official business.
  • Airplane Rate ($1.74/mile): The rate for using a privately owned airplane, which is significantly higher due to increased operational costs.

How to Use This Calculator

This tool simplifies the calculation of your expected reimbursement for 2023 travel claims.

  1. Enter Total Miles: Input the exact number of miles driven for official business during your trip in 2023.
  2. Select Scenario: Choose the appropriate vehicle type and situation from the dropdown menu. Ensure you select the correct automobile option based on government vehicle availability.
  3. Calculate: Click the button to see the total estimated dollar amount for reimbursement.

Note: This calculator provides an estimate based on published GSA rates. Final reimbursement is subject to approval by your specific agency's travel policy and procedures.

Leave a Comment