How to Calculate Cobra Rates for Self Funded Plans

Self-Funded COBRA Rate Calculator

Calculation Results

Projected Annual Plan Cost:

Monthly Applicable Premium (100%):

Max COBRA Premium (102% Rate):

function calculateCobraRate() { var claims = parseFloat(document.getElementById('paidClaims').value) || 0; var stopLoss = parseFloat(document.getElementById('stopLoss').value) || 0; var admin = parseFloat(document.getElementById('adminFees').value) || 0; var trend = parseFloat(document.getElementById('trendFactor').value) || 0; var lives = parseFloat(document.getElementById('enrolledLives').value) || 0; var refunds = parseFloat(document.getElementById('reimbursements').value) || 0; if (lives <= 0) { alert("Please enter a valid number of enrolled employees."); return; } // Calculate Base Cost var netPreviousCost = (claims + stopLoss + admin) – refunds; // Apply Trend/Inflation var projectedTotal = netPreviousCost * (1 + (trend / 100)); // Calculate Monthly Base Per Employee var monthlyBase = (projectedTotal / lives) / 12; // Add 2% Admin Fee var cobraRate = monthlyBase * 1.02; document.getElementById('resAnnualCost').innerText = "$" + projectedTotal.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resMonthlyPremium').innerText = "$" + monthlyBase.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resCobraRate').innerText = "$" + cobraRate.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}) + " per month"; document.getElementById('cobraResultArea').style.display = 'block'; }

Guide to Calculating COBRA Rates for Self-Funded Plans

Determining the correct COBRA premium for a self-funded health plan is significantly more complex than for fully insured plans. In a fully insured plan, you simply look at the premium billed by the carrier. For self-funded plans, the employer acts as the insurer, requiring a "shadow premium" or "applicable premium" to be calculated annually.

The Two Calculation Methods

The IRS allows two primary methods for self-funded employers to determine the COBRA rate:

  • The Actuarial Method: An actuary calculates the projected cost of the plan for the upcoming "determination period" based on demographics, plan design, and industry trends.
  • The Past Cost Method: The employer calculates the cost based on the previous 12-month period, adjusted for inflation (the "Implicit Price Deflator for Personal Consumption Expenditures"). This method can only be used if there haven't been significant changes to the plan or the workforce.

Components of the Calculation

To arrive at a compliant rate, you must aggregate the following data points:

  1. Paid Claims: The total dollar amount of medical and prescription drug claims paid by the plan during the previous 12-month period.
  2. Fixed Costs: This includes Administrative Service Only (ASO) fees paid to your Third Party Administrator (TPA), network access fees, and pharmacy benefit manager (PBM) administrative costs.
  3. Stop-Loss Premiums: Both specific (individual) and aggregate stop-loss insurance premiums paid to protect the plan from catastrophic losses.
  4. Expected Trend: A percentage increase applied to account for medical inflation and increased utilization in the coming year.
  5. The 2% Administrative Load: Under COBRA law, employers are permitted to charge 102% of the applicable premium. The extra 2% is intended to cover the internal administrative costs of managing COBRA.

The Determination Period

The COBRA rate must be determined before the start of the "determination period," which is a 12-month period (usually the plan year). Once the rate is set, it typically cannot be changed during those 12 months, regardless of whether the plan's actual costs fluctuate.

Example Calculation

Suppose a company with 100 employees had $500,000 in claims, $80,000 in stop-loss premiums, and $20,000 in TPA fees last year. They expect a 5% medical trend. The calculation would look like this:

  • Total Base Cost: $600,000
  • Projected Cost (Base + 5% Trend): $630,000
  • Annual Cost Per Employee: $6,300
  • Monthly Applicable Premium: $525.00
  • COBRA Rate (102%): $535.50

Compliance Warning

Failing to calculate these rates accurately can lead to ERISA violations or excise taxes under the Internal Revenue Code. It is highly recommended that self-funded employers consult with their TPA or a qualified actuary to certify the rates each year, especially if using the Actuarial Method.

Leave a Comment