Hospice Rate Calculator Palmetto

Palmetto GBA Hospice Rate Calculator

Instructions: Select the level of care and enter the local Wage Index provided by Palmetto GBA to estimate the Medicare reimbursement.
Routine Home Care (Days 1-60) Routine Home Care (Days 61+) Continuous Home Care (Per Hour) Inpatient Respite Care General Inpatient Care

Calculation Results


Understanding Palmetto GBA Hospice Reimbursement Rates

Hospice providers in Palmetto GBA jurisdictions must accurately calculate their expected reimbursement rates to manage operations and ensure compliance. Medicare hospice payment rates are updated annually by the Centers for Medicare & Medicaid Services (CMS) and vary based on the level of care provided and the geographic location of the patient (via the Wage Index).

The Core Components of the Calculation

The calculation for hospice reimbursement is not a flat fee. It involves a "Labor" and "Non-Labor" split. For most hospice services, approximately 66% of the base rate is considered the labor portion, which is adjusted by the local Wage Index, while the remaining 34% is the fixed non-labor portion.

  • Routine Home Care (RHC): The most common level of care. It features a two-tiered payment system where the first 60 days are paid at a higher rate than subsequent days.
  • Continuous Home Care (CHC): Provided during periods of crisis. This is calculated on an hourly basis (minimum 8 hours in a 24-hour period).
  • Inpatient Respite Care (IRC): Short-term inpatient care provided to give the primary caregiver a break.
  • General Inpatient Care (GIP): Provided in a hospital or skilled nursing facility for pain control or acute symptom management.

How to Use the Palmetto Rate Calculator

To get an accurate estimate, you must know your specific CBSA (Core-Based Statistical Area) Wage Index. This index is published annually in the Federal Register and hosted on the Palmetto GBA website.

  1. Select the Level of Care.
  2. Input the Wage Index decimal (e.g., 0.9214).
  3. Enter the Number of Days (or hours for CHC).
  4. The tool will automatically apply the labor-share adjustment and provide the total expected reimbursement.

Example Calculation

If a provider offers Routine Home Care (Days 1-60) in an area with a Wage Index of 0.9000:

  • Base Rate: $218.33
  • Labor Share (66%): $144.10
  • Non-Labor Share (34%): $74.23
  • Wage Adjusted Labor: $144.10 * 0.9000 = $129.69
  • Daily Rate: $129.69 + $74.23 = $203.92

Note: Rates used in this calculator are based on FY 2024 national base rates. Actual Palmetto GBA payments may include sequestrations or other local adjustments.

function toggleDays() { var level = document.getElementById("levelOfCare").value; var label = document.getElementById("unitLabel"); if (level === "chc") { label.innerText = "Number of Hours"; } else { label.innerText = "Number of Days"; } } function calculatePalmettoRate() { // FY 2024 Base Rates var rates = { "rhc_1_60": 218.33, "rhc_61_plus": 172.35, "chc": 65.23, // Per hour "irc": 507.71, "gip": 1110.76 }; // Labor Portions (approximate CMS standards) var laborShare = 0.66; var nonLaborShare = 0.34; var level = document.getElementById("levelOfCare").value; var wageIndex = parseFloat(document.getElementById("wageIndex").value); var units = parseFloat(document.getElementById("units").value); if (isNaN(wageIndex) || isNaN(units) || units <= 0) { alert("Please enter valid numbers for Wage Index and Units."); return; } var baseRate = rates[level]; var laborPortion = baseRate * laborShare; var nonLaborPortion = baseRate * nonLaborShare; // Wage Adjustment var adjustedLabor = laborPortion * wageIndex; var dailyRate = adjustedLabor + nonLaborPortion; var total = dailyRate * units; // Display Results document.getElementById("hospiceResult").style.display = "block"; document.getElementById("baseRateDisplay").innerHTML = "National Base Rate: $" + baseRate.toFixed(2); document.getElementById("wageAdjustedDisplay").innerHTML = "Wage Adjusted Daily/Hourly Rate: $" + dailyRate.toFixed(2); document.getElementById("totalReimbursement").innerHTML = "Estimated Total: $" + total.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); }

Leave a Comment