Irs Standard Mileage Rate 2022 Calculator

2022 IRS Standard Mileage Rate Calculator

Note: Due to rising fuel costs, the IRS increased mileage rates mid-year in 2022. Please separate your miles based on the date they were driven.

Business Miles

Rate: 58.5 cents
Rate: 62.5 cents

Medical or Moving Miles

Rate: 18 cents
Rate: 22 cents

Charitable Miles

Rate: 14 cents (fixed)

Estimated 2022 Deduction


Understanding the 2022 Mid-Year IRS Mileage Rate Change

The 2022 tax year was unique for taxpayers who deduct vehicle expenses. In response to significant increases in fuel prices, the IRS took the rare step of performing a mid-year adjustment to the optional standard mileage rates. This means that if you are filing for the 2022 tax year, you cannot simply apply one rate to all miles driven.

2022 IRS Mileage Rates Table

Category Jan 1 – June 30 July 1 – Dec 31
Business 58.5 cents 62.5 cents
Medical/Moving 18 cents 22 cents
Charitable 14 cents 14 cents

How to Use the 2022 Mileage Calculator

To ensure accuracy on your tax return, follow these steps:

  1. Audit your logs: Review your 2022 mileage log and group your trips by date.
  2. Separate by Period: Total your business, medical, or moving miles for the first half of the year (January through June) and the second half (July through December).
  3. Calculate Charity: Charitable miles remained at a statutory 14 cents per mile for the entire duration of 2022.
  4. Input Data: Enter your totals into the calculator above to see your combined deductible amount.

Example Calculation

Suppose a self-employed consultant drove 5,000 miles for business from March to May and 5,000 miles from August to October:

  • H1 (5,000 miles x $0.585): $2,925.00
  • H2 (5,000 miles x $0.625): $3,125.00
  • Total Business Deduction: $6,050.00

Frequently Asked Questions

Can I use the standard mileage rate for any vehicle?
You can use it for cars, vans, pickups, or panel trucks. However, there are restrictions if you have used accelerated depreciation on the vehicle previously or if you operate a fleet of five or more cars simultaneously.

Does the mileage rate include gas?
Yes. The standard mileage rate is designed to cover gas, oil, repairs, tires, insurance, registration fees, and depreciation. You cannot deduct actual expenses and use the standard mileage rate at the same time.

Are parking and tolls deductible?
Yes, you can generally deduct parking fees and tolls incurred for business purposes in addition to the standard mileage rate.

function calculateMileage2022() { var bH1 = parseFloat(document.getElementById('bizJanJun').value) || 0; var bH2 = parseFloat(document.getElementById('bizJulDec').value) || 0; var mH1 = parseFloat(document.getElementById('medJanJun').value) || 0; var mH2 = parseFloat(document.getElementById('medJulDec').value) || 0; var char = parseFloat(document.getElementById('charityMiles').value) || 0; var bizTotal = (bH1 * 0.585) + (bH2 * 0.625); var medTotal = (mH1 * 0.18) + (mH2 * 0.22); var charTotal = (char * 0.14); var grandTotal = bizTotal + medTotal + charTotal; var resultDiv = document.getElementById('mileageResult'); var resultContent = document.getElementById('resultContent'); var breakdownContent = document.getElementById('breakdownContent'); resultContent.innerHTML = '$' + grandTotal.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); var breakdownHTML = 'Calculation Breakdown:'; if(bH1 > 0 || bH2 > 0) breakdownHTML += 'Business: $' + bizTotal.toFixed(2) + "; if(mH1 > 0 || mH2 > 0) breakdownHTML += 'Medical/Moving: $' + medTotal.toFixed(2) + "; if(char > 0) breakdownHTML += 'Charitable: $' + charTotal.toFixed(2); breakdownContent.innerHTML = breakdownHTML; resultDiv.style.display = 'block'; // Smooth scroll to result resultDiv.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment