Palmetto Gba Hospice Rate Calculator

Palmetto GBA Hospice Rate Calculator

Estimate Medicare Hospice Reimbursement for Jurisdiction J & M

Routine Home Care (Days 1-60) Routine Home Care (Days 61+) Continuous Home Care (Per Hour) Inpatient Respite Care General Inpatient Care
Use hours for CHC, days for others.

Estimated Reimbursement

Daily/Hourly Adjusted Rate: $0.00
Total Estimated Payment: $0.00

Understanding Palmetto GBA Hospice Rates

Palmetto GBA serves as the Medicare Administrative Contractor (MAC) for specific jurisdictions. Hospice reimbursement is determined by the Medicare federal base rates, which are adjusted annually and modified by the geographic wage index associated with the patient's location (CBSA).

How the Calculation Works

The calculation follows the standard CMS formula for hospice payment:

  • Labor Portion: (Base Rate × Labor Share %) × Wage Index
  • Non-Labor Portion: Base Rate × (1 – Labor Share %)
  • Total Adjusted Rate: Labor Portion + Non-Labor Portion

Key Rate Components (FY 2025 Estimates)

Level of Care Base Rate Labor Share
Routine Home Care (1-60) $225.23 68.1%
Routine Home Care (61+) $177.76 68.1%
General Inpatient (GIP) $1,168.16 68.1%
Continuous Care (Full Day) $1,578.43 68.1%
Inpatient Respite (IRC) $531.02 54.1%

Example Calculation

If a provider in a region with a Wage Index of 1.0500 provides 5 days of Routine Home Care (Days 1-60):

  1. Base Rate: $225.23
  2. Labor Portion (68.1%): $153.38 × 1.0500 = $161.05
  3. Non-Labor Portion (31.9%): $71.85
  4. Daily Adjusted Rate: $161.05 + $71.85 = $232.90
  5. Total Payment: $232.90 × 5 = $1,164.50
function calculatePalmettoRate() { var loc = document.getElementById('levelOfCare').value; var wageIndex = parseFloat(document.getElementById('wageIndex').value); var units = parseFloat(document.getElementById('unitsCount').value); if (isNaN(wageIndex) || wageIndex <= 0) { alert("Please enter a valid Wage Index (e.g., 1.0123)"); return; } if (isNaN(units) || units <= 0) { alert("Please enter a valid number of units."); return; } var baseRate = 0; var laborShare = 0.681; // Default labor share for most LOCs // FY 2025 Rates (Standard values for calculation) if (loc === "rhc_low") { baseRate = 225.23; laborShare = 0.681; } else if (loc === "rhc_high") { baseRate = 177.76; laborShare = 0.681; } else if (loc === "chc") { baseRate = 65.77; // Hourly rate (Total daily CHC is ~1578.43 / 24) laborShare = 0.681; } else if (loc === "irc") { baseRate = 531.02; laborShare = 0.541; // Different labor share for Respite } else if (loc === "gip") { baseRate = 1168.16; laborShare = 0.681; } var laborPortion = baseRate * laborShare; var nonLaborPortion = baseRate * (1 – laborShare); var adjustedLabor = laborPortion * wageIndex; var dailyAdjustedRate = adjustedLabor + nonLaborPortion; var totalPayment = dailyAdjustedRate * units; // Update Display document.getElementById('adjustedRateDisplay').innerText = "$" + dailyAdjustedRate.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('totalPaymentDisplay').innerText = "$" + totalPayment.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resultArea').style.display = 'block'; }

Leave a Comment