VA Disability Compensation Calculator (2024 Rates)
0%
10%
20%
30%
40%
50%
60%
70%
80%
90%
100%
Single / Divorced / Widowed
Married
0
1
2
Estimated Monthly Payment
$0.00
Based on 2024 COLA rates effective Dec 1, 2023.
function toggleDependentFields() {
var rating = parseInt(document.getElementById('disabilityRating').value);
var depSection = document.getElementById('dependentsSection');
// Dependents only count for ratings 30% and higher
if (rating >= 30) {
depSection.style.display = 'block';
} else {
depSection.style.display = 'none';
}
}
function toggleSpouseFields() {
var status = document.getElementById('maritalStatus').value;
var spouseAA = document.getElementById('spouseAAContainer');
if (status === 'married') {
spouseAA.style.display = 'flex';
} else {
spouseAA.style.display = 'none';
document.getElementById('spouseAA').checked = false;
}
}
function calculateVARate() {
// 1. Get Inputs
var rating = parseInt(document.getElementById('disabilityRating').value);
var isMarried = document.getElementById('maritalStatus').value === 'married';
var spouseHasAA = document.getElementById('spouseAA').checked;
// Parse dependent numbers, handle invalid input as 0
var childUnder18 = parseInt(document.getElementById('childrenUnder18').value);
if (isNaN(childUnder18) || childUnder18 < 0) childUnder18 = 0;
var childInSchool = parseInt(document.getElementById('childrenInSchool').value);
if (isNaN(childInSchool) || childInSchool < 0) childInSchool = 0;
var parents = parseInt(document.getElementById('dependentParents').value);
if (isNaN(parents)) parents = 0;
// 2. Data Tables (2024 Rates)
// Indices: 0=0%, 1=10%, 2=20%, 3=30%, … 10=100%
// Base Rate (Veteran Alone)
var baseRates = [0, 171.23, 338.49, 524.31, 755.28, 1075.16, 1361.88, 1716.28, 1995.01, 2241.91, 3737.85];
// Add-on for Spouse (if married)
var spouseRates = [0, 0, 0, 62.00, 84.00, 105.00, 126.00, 147.00, 168.00, 189.00, 208.40];
// Add-on for Child Under 18
var childUnder18Rates = [0, 0, 0, 31.00, 41.00, 51.00, 62.00, 72.00, 82.00, 93.00, 100.34];
// Add-on for Child 18-23 (School)
var childSchoolRates = [0, 0, 0, 100.00, 133.00, 167.00, 200.00, 234.00, 267.00, 301.00, 324.12];
// Add-on for Dependent Parent (Each)
var parentRates = [0, 0, 0, 50.00, 67.00, 84.00, 100.00, 117.00, 134.00, 151.00, 166.81];
// Add-on for Spouse Aid & Attendance
var spouseAARates = [0, 0, 0, 57.00, 76.00, 95.00, 114.00, 134.00, 153.00, 172.00, 191.14];
// 3. Calculation Logic
var ratingIndex = rating / 10;
var totalMonthly = 0;
if (ratingIndex < 3) {
// 0%, 10%, 20% – Dependents do not increase rate
totalMonthly = baseRates[ratingIndex];
} else {
// 30% – 100%
totalMonthly = baseRates[ratingIndex];
// Add Spouse
if (isMarried) {
totalMonthly += spouseRates[ratingIndex];
// Add Spouse A&A if applicable
if (spouseHasAA) {
totalMonthly += spouseAARates[ratingIndex];
}
}
// Add Children < 18
totalMonthly += (childUnder18 * childUnder18Rates[ratingIndex]);
// Add Children 18-23 in School
totalMonthly += (childInSchool * childSchoolRates[ratingIndex]);
// Add Parents
totalMonthly += (parents * parentRates[ratingIndex]);
}
// 4. Display Result
var displayAmount = totalMonthly.toLocaleString('en-US', { style: 'currency', currency: 'USD' });
document.getElementById('monthlyPayment').innerText = displayAmount;
document.getElementById('result').style.display = 'block';
}
Understanding 2024 VA Compensation Rates
The 2024 VA disability pay rates reflect a 3.2% Cost of Living Adjustment (COLA) increase over the previous year. These rates became effective on December 1, 2023, and are reflected in payments received starting January 2024.
How is Your Payment Calculated?
Your monthly VA compensation is determined primarily by your Combined Disability Rating. However, if your rating is 30% or higher, your family status significantly impacts your total monthly payment.
10% – 20% Ratings: Veterans with these ratings receive a fixed base amount regardless of marital status or dependents.
30% – 100% Ratings: Veterans qualify for additional compensation for eligible dependents, including spouses, children under 18, children between 18-23 attending school, and dependent parents.
Dependents and "Add-Ons"
If you have a rating of 30% or higher, it is crucial to notify the VA of your dependents to receive the full compensation you are entitled to. The calculator above uses the official 2024 General Schedule tables to estimate these "add-ons":
Spouse: A standard monthly addition is applied if you are legally married. This amount increases if your spouse requires Aid and Attendance (A&A).
Children: You receive a specific amount for each child under 18. A higher rate applies to children between 18 and 23 who are enrolled in a qualifying educational program.
Parents: If you have parents who are financially dependent on you, you may receive an additional stipend per parent.
Real-World Example (2024 Rates)
Consider a Veteran with a 70% disability rating. The base rate for a single veteran with no dependents is $1,716.28 per month.
However, if this Veteran is married and has one child under 18:
Base Rate (70%): $1,716.28
Spouse Add-on: +$147.00
Child (<18) Add-on: +$72.00
Total Monthly Payment: $1,935.28
Use the calculator above to input your specific rating and family details to see exactly what your 2024 compensation should be.