Va Caregiver Stipend Calculator by Zip Code

.va-stipend-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #ddd; border-radius: 8px; background-color: #f9f9f9; color: #333; } .va-stipend-container h2 { color: #004795; margin-top: 0; text-align: center; } .input-group { margin-bottom: 20px; } .input-group label { display: block; font-weight: bold; margin-bottom: 8px; } .input-group input, .input-group select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 16px; } .calc-btn { width: 100%; background-color: #004795; color: white; padding: 15px; border: none; border-radius: 4px; cursor: pointer; font-size: 18px; font-weight: bold; } .calc-btn:hover { background-color: #003366; } #result-area { margin-top: 25px; padding: 20px; background-color: #e7f3ff; border-radius: 4px; display: none; border-left: 5px solid #004795; } .result-value { font-size: 24px; font-weight: bold; color: #004795; } .va-article { margin-top: 40px; line-height: 1.6; } .va-article h3 { color: #004795; border-bottom: 2px solid #004795; padding-bottom: 5px; } .va-article table { width: 100%; border-collapse: collapse; margin: 20px 0; } .va-article th, .va-article td { border: 1px solid #ddd; padding: 10px; text-align: left; } .va-article th { background-color: #f2f2f2; }

VA PCAFC Caregiver Stipend Calculator

Level 1 (Lower Level of Assistance) Level 2 (Higher Level of Assistance)
Rest of U.S. (Standard Rate) San Francisco-San Jose, CA New York-Newark, NY-NJ-CT-PA Washington-Baltimore-Arlington, DC-MD-VA Los Angeles-Long Beach, CA Chicago-Naperville, IL-IN-WI Houston-The Woodlands, TX Seattle-Tacoma, WA Boston-Worcester-Providence, MA-RI-NH-CT Manual Entry (Other City/Zip)
Enter the GS-4 Step 1 rate for your specific OPM Locality Pay Area.
Estimated Monthly Stipend: $0.00

Understanding the VA Caregiver Stipend (PCAFC)

The Program of Comprehensive Assistance for Family Caregivers (PCAFC) provides a monthly financial stipend to primary family caregivers of eligible Veterans. This stipend is not considered income for tax purposes and is designed to acknowledge the significant support provided to Veterans with service-connected disabilities.

How the Stipend is Calculated

The calculation is based on the GS-4 Step 1 hourly rate for the locality where the Veteran resides. The VA uses the Bureau of Labor Statistics data or the OPM General Schedule (GS) tables to determine this base rate. The formula used is:

  • Level 1 (Lower Tier): (GS-4 Step 1 Hourly Rate) × 40 hours × 4.35 weeks × 62.5%
  • Level 2 (Higher Tier): (GS-4 Step 1 Hourly Rate) × 40 hours × 4.35 weeks × 100%

Difference Between Level 1 and Level 2

Tier Requirement Stipend Amount
Level 1 Veteran is "unable to self-sustain in the community" and requires significant care. 62.5% of the full monthly rate.
Level 2 Veteran requires "continuous supervision and protection" or has the highest care needs. 100% of the full monthly rate.

Example Calculation

If you live in a "Rest of U.S." locality where the 2024 GS-4 Step 1 rate is approximately $17.65 per hour:

  • Full Base Rate: $17.65 × 40 × 4.35 = $3,071.10
  • Level 1 Caregiver: $3,071.10 × 0.625 = $1,919.44 per month
  • Level 2 Caregiver: $3,071.10 × 1.0 = $3,071.10 per month

Eligibility Requirements

To qualify for this stipend, the Veteran must have a service-connected disability rating (either individual or combined) of 70% or higher. The Veteran must also have been discharged from the U.S. military or have a date of medical discharge. The care provided must be necessary to help the Veteran with Activities of Daily Living (ADLs) or for supervision/protection needs due to neurological or other impairment.

function calculateStipend() { var gsRate = parseFloat(document.getElementById('gsRate').value); var tier = parseInt(document.getElementById('careLevel').value); var resultDiv = document.getElementById('result-area'); var stipendDisplay = document.getElementById('stipendResult'); var breakdownDisplay = document.getElementById('calc-breakdown'); if (isNaN(gsRate) || gsRate <= 0) { alert("Please enter a valid GS-4 Step 1 hourly rate."); return; } // Standard VA Formula: Hourly Rate * 40 (hours) * 4.35 (average weeks per month) var fullMonthlyRate = gsRate * 40 * 4.35; var finalStipend = 0; var tierText = ""; if (tier === 1) { finalStipend = fullMonthlyRate * 0.625; tierText = "Level 1 (62.5%)"; } else { finalStipend = fullMonthlyRate * 1.0; tierText = "Level 2 (100%)"; } stipendDisplay.innerText = "$" + finalStipend.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); breakdownDisplay.innerHTML = "Calculation Breakdown:" + "Base Hourly Rate: $" + gsRate.toFixed(2) + "" + "Calculated Full Monthly Rate: $" + fullMonthlyRate.toLocaleString(undefined, {maximumFractionDigits: 2}) + "" + "Adjustment for " + tierText + ": $" + finalStipend.toLocaleString(undefined, {maximumFractionDigits: 2}); resultDiv.style.display = 'block'; resultDiv.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment