Irs per Diem Rates 2025 Calculator

.per-diem-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e1e1; border-radius: 8px; background-color: #f9f9f9; color: #333; } .per-diem-container h2 { color: #2c3e50; text-align: center; margin-bottom: 25px; } .calculator-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; } .input-group { display: flex; flex-direction: column; } .input-group label { font-weight: 600; margin-bottom: 8px; font-size: 14px; color: #444; } .input-group input { padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; } .full-width { grid-column: 1 / -1; } .calc-button { background-color: #0056b3; color: white; border: none; padding: 15px 25px; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; width: 100%; transition: background-color 0.2s; } .calc-button:hover { background-color: #004494; } .results-box { margin-top: 25px; padding: 20px; background-color: #fff; border: 2px solid #0056b3; border-radius: 6px; display: none; } .results-box h3 { margin-top: 0; color: #0056b3; } .result-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #eee; } .result-row:last-child { border-bottom: none; font-weight: bold; font-size: 1.2em; color: #d35400; } .info-section { margin-top: 40px; line-height: 1.6; color: #444; } .info-section h3 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; } @media (max-width: 600px) { .calculator-grid { grid-template-columns: 1fr; } }

IRS Per Diem Rates 2025 Calculator

Reimbursement Breakdown

Total Lodging: $0.00
Total M&IE: $0.00
Total Per Diem: $0.00

How to Use the IRS Per Diem 2025 Calculator

This calculator helps business travelers and employers estimate federal per diem reimbursements for the 2025 fiscal year (starting October 1, 2024). Per diem is the daily allowance for lodging, meals, and incidental expenses (M&IE).

Standard FY2025 Rates

For most areas within the Continental United States (CONUS), the GSA has set the following standard rates for 2025:

  • Standard Lodging: $110 per night (excluding taxes).
  • Standard M&IE: $68 per day.

The 75% Rule

IRS and GSA regulations specify that on the first and last day of travel, the traveler is only eligible for 75% of the daily M&IE rate. Our calculator accounts for this by allowing you to separate "Full Days" from "Partial Days." Typically, an overnight trip has two partial days (the day you leave and the day you return).

Example Calculation

If you travel to a standard CONUS location for 3 nights and 4 total days:

  • Lodging: 3 nights × $110 = $330
  • M&IE (Full): 2 days × $68 = $136
  • M&IE (Partial): 2 days × ($68 × 0.75) = $102
  • Total Reimbursement: $568

Important Considerations

1. Taxes: In the United States, lodging taxes are not included in the per diem rate and should be reimbursed separately as a miscellaneous expense.

2. Non-Standard Areas (NSAs): Many cities (like New York, Chicago, or San Francisco) have significantly higher rates than the standard. Always verify the specific rate for your destination ZIP code on the GSA website.

3. High-Low Method: Some employers use a simplified "High-Low" substantiation method which uses a fixed rate for specific high-cost localities and a lower rate for everywhere else.

function calculatePerDiem() { // Get input values var lodgingRate = parseFloat(document.getElementById('lodgingRate').value); var nights = parseInt(document.getElementById('nights').value); var mieRate = parseFloat(document.getElementById('mieRate').value); var fullDays = parseInt(document.getElementById('fullDays').value); var partialDays = parseInt(document.getElementById('partialDays').value); // Validation if (isNaN(lodgingRate)) lodgingRate = 0; if (isNaN(nights)) nights = 0; if (isNaN(mieRate)) mieRate = 0; if (isNaN(fullDays)) fullDays = 0; if (isNaN(partialDays)) partialDays = 0; // Calculations var totalLodging = lodgingRate * nights; var mieFullTotal = fullDays * mieRate; var miePartialTotal = partialDays * (mieRate * 0.75); var totalMIE = mieFullTotal + miePartialTotal; var grandTotal = totalLodging + totalMIE; // Display results document.getElementById('totalLodging').innerText = '$' + totalLodging.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('totalMIE').innerText = '$' + totalMIE.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('grandTotal').innerText = '$' + grandTotal.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('results').style.display = 'block'; }

Leave a Comment