Mileage Rate 2018 Calculator

.mileage-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 600px; margin: 20px auto; padding: 25px; border: 1px solid #ddd; border-radius: 8px; background-color: #f9f9f9; box-shadow: 0 2px 10px rgba(0,0,0,0.1); } .mileage-calc-container h2 { text-align: center; color: #2c3e50; margin-top: 0; } .input-group { margin-bottom: 15px; } .input-group label { display: block; margin-bottom: 5px; font-weight: 600; color: #333; } .input-group input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 16px; } .calc-button { width: 100%; padding: 12px; background-color: #27ae60; color: white; border: none; border-radius: 4px; font-size: 18px; cursor: pointer; transition: background-color 0.3s; } .calc-button:hover { background-color: #219150; } .result-area { margin-top: 20px; padding: 15px; background-color: #fff; border-left: 5px solid #27ae60; display: none; } .result-item { display: flex; justify-content: space-between; margin-bottom: 10px; border-bottom: 1px dashed #eee; padding-bottom: 5px; } .result-total { font-size: 20px; font-weight: bold; color: #27ae60; text-align: center; margin-top: 10px; } .mileage-article { max-width: 800px; margin: 40px auto; line-height: 1.6; color: #444; } .mileage-article h2, .mileage-article h3 { color: #2c3e50; } .mileage-table { width: 100%; border-collapse: collapse; margin: 20px 0; } .mileage-table th, .mileage-table td { border: 1px solid #ddd; padding: 12px; text-align: left; } .mileage-table th { background-color: #f2f2f2; }

2018 IRS Mileage Calculator

Business Deduction ($0.545/mile): $0.00
Medical/Moving ($0.18/mile): $0.00
Charitable ($0.14/mile): $0.00
Total 2018 Deduction: $0.00
function calculate2018Mileage() { var busMiles = parseFloat(document.getElementById("businessMiles").value) || 0; var medMiles = parseFloat(document.getElementById("medicalMiles").value) || 0; var charMiles = parseFloat(document.getElementById("charityMiles").value) || 0; // 2018 Rates var busRate = 0.545; var medRate = 0.18; var charRate = 0.14; var busDeduct = busMiles * busRate; var medDeduct = medMiles * medRate; var charDeduct = charMiles * charRate; var totalDeduct = busDeduct + medDeduct + charDeduct; document.getElementById("resBus").innerHTML = "$" + busDeduct.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById("resMed").innerHTML = "$" + medDeduct.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById("resChar").innerHTML = "$" + charDeduct.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById("resTotal").innerHTML = "$" + totalDeduct.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById("resultDisplay").style.display = "block"; }

Understanding the 2018 Standard Mileage Rates

For the tax year 2018, the Internal Revenue Service (IRS) issued the optional standard mileage rates used to calculate the deductible costs of operating an automobile for business, charitable, medical, or moving purposes. These rates reflect the variable and fixed costs of operating a vehicle, including gas, oil, repairs, and depreciation.

IRS Mileage Rates for 2018

The rates for 2018 saw a slight increase from the 2017 tax year due to rising fuel and maintenance costs. The breakdown of the rates is as follows:

Purpose Rate Per Mile
Business 54.5 cents
Medical or Moving 18 cents
Charitable Service 14 cents

Key Changes and Rules for 2018

It is important to note that the Tax Cuts and Jobs Act (TCJA), which took effect in 2018, significantly altered who can claim these deductions:

  • Employees: Under the TCJA, employees can no longer claim an itemized deduction for unreimbursed employee business expenses. This means if you drive for your employer and they do not reimburse you, you generally cannot deduct those miles on your federal return.
  • Self-Employed: Small business owners and self-employed individuals can still deduct business miles on Schedule C.
  • Moving Expenses: The deduction for moving expenses is now generally limited to active-duty members of the Armed Forces moving under orders.

Calculation Example

Suppose a freelance consultant drove 5,000 miles for business meetings in 2018. To calculate the deduction:

5,000 miles × $0.545 = $2,725.00

Additionally, if that same individual drove 500 miles for charitable volunteer work, they would add:

500 miles × $0.14 = $70.00

The total tax deduction for the year would be $2,795.00.

Record Keeping Requirements

To successfully claim the mileage deduction, the IRS requires taxpayers to maintain a contemporaneous log. This log should include the date of the trip, the destination, the business purpose, and the number of miles driven. Using a dedicated mileage tracking app or a written diary is essential for documentation in the event of an audit.

Leave a Comment