Irs Mileage Rate 2022 Calculator

IRS Mileage Rate 2022 Calculator

Calculate your 2022 tax deduction for business, medical, or moving expenses.

Business Medical or Moving Charitable

Results:

function calculateMileage2022() { var cat = document.getElementById("category").value; var milesP1 = parseFloat(document.getElementById("milesP1").value) || 0; var milesP2 = parseFloat(document.getElementById("milesP2").value) || 0; var rate1, rate2; if (cat === "business") { rate1 = 0.585; rate2 = 0.625; } else if (cat === "medical") { rate1 = 0.18; rate2 = 0.22; } else { // Charitable stays the same all year rate1 = 0.14; rate2 = 0.14; } var totalP1 = milesP1 * rate1; var totalP2 = milesP2 * rate2; var grandTotal = totalP1 + totalP2; var resultContainer = document.getElementById("result-container"); var resultDetails = document.getElementById("result-details"); var resultTotal = document.getElementById("result-total"); resultDetails.innerHTML = "Period 1 (" + (rate1 * 100).toFixed(1) + "¢/mile): $" + totalP1.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}) + "" + "Period 2 (" + (rate2 * 100).toFixed(1) + "¢/mile): $" + totalP2.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); resultTotal.innerHTML = "Total 2022 Deduction: $" + grandTotal.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); resultContainer.style.display = "block"; }

How the 2022 IRS Mileage Rate Works

The 2022 tax year was unique because the IRS issued a mid-year adjustment to the standard mileage rates. Due to significant increases in fuel costs during the first half of the year, the rates were raised effective July 1, 2022. This calculator accounts for both periods to ensure your tax return or reimbursement request is accurate.

Standard Business Mileage Rates for 2022

  • January 1 – June 30, 2022: 58.5 cents per mile.
  • July 1 – December 31, 2022: 62.5 cents per mile.

Medical and Moving Rates

Similar to business rates, the medical and moving mileage rates saw a 4-cent increase mid-year:

  • January 1 – June 30, 2022: 18 cents per mile.
  • July 1 – December 31, 2022: 22 cents per mile.

Charitable Mileage Rates

The rate for service to charitable organizations is set by statute and remained unchanged at 14 cents per mile for the entire 2022 calendar year.

Realistic Example Calculation

Suppose you are a self-employed consultant who drove for business purposes throughout 2022:

  1. First Half of Year: You drove 2,500 miles between January and June. At 58.5 cents, your deduction is $1,462.50.
  2. Second Half of Year: You drove 3,000 miles between July and December. At 62.5 cents, your deduction is $1,875.00.
  3. Total Deduction: Adding both periods together, your total 2022 business mileage deduction would be $3,337.50.

Frequently Asked Questions

Why did the rate change in the middle of 2022?
The IRS typically sets mileage rates annually. However, in June 2022, the IRS announced a rare mid-year increase to address soaring gasoline prices, providing relief to drivers and businesses.

Can I use the standard mileage rate if I used actual expenses?
No. You must choose between the standard mileage rate and the actual expense method (gas, oil, repairs, insurance, etc.). If you want to use the standard mileage rate for a car you own, you must choose to use it in the first year the car is available for business use.

Do I need to keep a log?
Yes. To claim the deduction, the IRS requires you to maintain a written log or digital record of your business travel, including the date, mileage, destination, and business purpose of each trip.

Leave a Comment