Post 9 11 Gi Bill Bah Rates Calculator

.gi-bill-calculator-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e0e0e0; border-radius: 8px; background-color: #f9f9f9; color: #333; } .gi-bill-calculator-container h2 { color: #003366; margin-top: 0; } .gi-input-group { margin-bottom: 20px; } .gi-input-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 14px; } .gi-input-group input, .gi-input-group select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 16px; } .gi-calc-btn { background-color: #003366; color: white; padding: 15px 25px; border: none; border-radius: 4px; cursor: pointer; font-size: 16px; font-weight: bold; width: 100%; transition: background-color 0.3s; } .gi-calc-btn:hover { background-color: #002244; } #gi-result-area { margin-top: 25px; padding: 20px; background-color: #fff; border-left: 5px solid #003366; display: none; } .gi-result-title { font-size: 18px; font-weight: bold; margin-bottom: 10px; color: #003366; } .gi-result-value { font-size: 28px; font-weight: 800; color: #d32f2f; } .gi-info-text { font-size: 13px; color: #666; margin-top: 5px; } .gi-article-content { margin-top: 40px; line-height: 1.6; } .gi-article-content h3 { color: #003366; border-bottom: 2px solid #eee; padding-bottom: 10px; } .gi-table { width: 100%; border-collapse: collapse; margin: 20px 0; } .gi-table th, .gi-table td { border: 1px solid #ddd; padding: 12px; text-align: left; } .gi-table th { background-color: #f2f2f2; }

Post-9/11 GI Bill MHA Calculator

Estimate your Monthly Housing Allowance (MHA) based on your school location, eligibility tier, and course load.

In-Person (at least one class) 100% Online Distance Learning

Look this up via the DoD BAH Tool using your school's zip code.

100% (36+ months service) 90% (30-36 months) 80% (24-30 months) 70% (18-24 months) 60% (6-18 months) 50% (90 days – 6 months)
Estimated Monthly Housing Allowance (MHA):
$0.00

Note: Payments are made in arrears (at the end of the month).

How the Post-9/11 GI Bill BAH is Calculated

The Monthly Housing Allowance (MHA) for the Post-9/11 GI Bill (Chapter 33) is generally equal to the Basic Allowance for Housing (BAH) amount for an E-5 with dependents. However, several factors modify the actual amount you receive in your bank account each month.

1. Training Type: If you take all your classes online, your MHA is capped at half the national average of BAH rates. As of the 2024-2025 academic year, the 100% online rate is approximately $1,177.50. If you take at least one credit hour in a physical classroom, you qualify for the full zip-code based rate.

2. Rate of Pursuit: You must be enrolled more than half-time to receive any MHA. For most undergraduate programs, 12 credits is full-time. If you take 7 credits, your rate of pursuit is 7/12 (58%). The VA rounds this to the nearest 10th (60%), and you receive 60% of the MHA.

3. Eligibility Tier: Your length of active duty service after September 10, 2001, determines your percentage. If you served 36 aggregate months or were discharged for a service-connected disability after 30 days, you are at 100%.

Eligibility Tiers Table

Service Requirements (Post 9/11) Percentage of Maximum Benefit
At least 36 months 100%
At least 30 months, but less than 36 months 90%
At least 24 months, but less than 30 months 80%
At least 18 months, but less than 24 months 70%
At least 6 months, but less than 18 months 60%
At least 90 days, but less than 6 months 50%

Common Calculation Examples

Example 1: In-Person Student
A student at 100% eligibility goes to school in San Diego (Zip BAH: $3,400). They take 12 credits (Full-time).
Calculation: $3,400 * 1.00 * 1.00 = $3,400 per month.

Example 2: Online Student
A student at 100% eligibility takes all classes online. They take 12 credits.
Calculation: $1,177.50 (National Avg) * 1.00 * 1.00 = $1,177.50 per month.

Example 3: Part-Time In-Person
A student at 80% eligibility takes 9 credits out of 12 required for full-time. Zip BAH is $2,000.
Rate of Pursuit: 9/12 = 75%. (VA rounds to 80% for payment).
Calculation: $2,000 * 0.80 (Eligibility) * 0.80 (Pursuit) = $1,280 per month.

function toggleZipInput() { var type = document.getElementById("trainingType").value; var container = document.getElementById("zipRateContainer"); if (type === "online") { container.style.display = "none"; } else { container.style.display = "block"; } } function calculateMHA() { var type = document.getElementById("trainingType").value; var elig = parseFloat(document.getElementById("eligibilityPct").value) / 100; var credits = parseFloat(document.getElementById("creditsTaken").value); var fullTime = parseFloat(document.getElementById("fullTimeCredits").value); var zipBah = parseFloat(document.getElementById("zipBahRate").value); var resultDiv = document.getElementById("gi-result-area"); var mhaOutput = document.getElementById("mhaOutput"); var pursuitInfo = document.getElementById("pursuitInfo"); // Validate basic inputs if (isNaN(credits) || isNaN(fullTime) || fullTime 0.50 to get MHA if (rateOfPursuit 1.0) { roundedPursuit = 1.0; } // Final Calculation var finalMha = baseRate * elig * roundedPursuit; // Display results mhaOutput.innerHTML = "$" + finalMha.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); pursuitInfo.innerHTML = "Rate of Pursuit: " + (rateOfPursuit * 100).toFixed(1) + "% (VA pays at " + (roundedPursuit * 100).toFixed(0) + "% level). Eligibility: " + (elig * 100) + "%."; resultDiv.style.display = "block"; }

Leave a Comment