Enter gross wages for the four quarters of your Base Period (usually the first 4 of the last 5 completed quarters).
Estimated Weekly Benefit Amount
$0.00
Based on High Quarter Wages
$0.00
Calculation based on the standard 1/26th rule used by the NYS Department of Labor.
Understanding Your New York State Unemployment Rate
Calculating your potential unemployment benefits in New York State involves specific formulas set by the Department of Labor. Unlike a simple salary percentage, NYS uses a "Base Period" calculation to determine your Weekly Benefit Amount (WBA).
How the Calculation Works
The NYS Department of Labor determines your benefit rate based on your gross wages paid during your Base Period. The Basic Base Period is the first four of the last five completed calendar quarters before you filed your claim.
Once your Base Period is established, the state looks for your High Quarter—the quarter in which you earned the most money.
The 1/26 Rule
For most claimants, the weekly benefit rate is calculated as 1/26th of your high quarter wages. This implies that the state aims to replace approximately 50% of your average weekly wage (assuming a 13-week quarter).
For example, if you earned $10,400 in your highest earning quarter:
High Quarter Wages: $10,400
Calculation: $10,400 ÷ 26
Weekly Benefit: $400
Maximum and Minimum Limits
Regardless of how high your previous salary was, New York State imposes a cap on the weekly benefit.
Maximum Benefit Rate: Currently capped at $504 per week.
Minimum Benefit Rate: generally around $100, provided you meet minimum wage thresholds in your base period.
Eligibility Requirements
To qualify for benefits based on these calculations, you generally must meet the following wage requirements during your Base Period:
You must have worked and been paid wages in at least two calendar quarters.
You must have been paid at least $2,900 in one calendar quarter.
Your total base period wages must be at least 1.5 times your high quarter wages.
Partial Unemployment
New York State uses an hours-based system for partial unemployment. If you work 30 hours or fewer in a week and earn $504 or less, you may still receive partial benefits. The amount is reduced based on how many hours you worked, not strictly the dollar amount earned, ensuring you are not penalized for accepting part-time work while seeking full-time employment.
Note: This calculator provides an estimate based on the standard formula. Official determinations are made solely by the NYS Department of Labor after filing a valid claim.
function calculateNYSBenefit() {
// Get inputs by ID
var q1 = parseFloat(document.getElementById('ny_q1_wages').value);
var q2 = parseFloat(document.getElementById('ny_q2_wages').value);
var q3 = parseFloat(document.getElementById('ny_q3_wages').value);
var q4 = parseFloat(document.getElementById('ny_q4_wages').value);
// Handle NaN
if (isNaN(q1)) q1 = 0;
if (isNaN(q2)) q2 = 0;
if (isNaN(q3)) q3 = 0;
if (isNaN(q4)) q4 = 0;
// Basic Validation
var wages = [q1, q2, q3, q4];
var quartersWithWages = 0;
var totalWages = 0;
var highQuarter = 0;
for (var i = 0; i 0) {
quartersWithWages++;
}
totalWages += wages[i];
if (wages[i] > highQuarter) {
highQuarter = wages[i];
}
}
var resultArea = document.getElementById('result-area');
var resultValue = document.getElementById('benefit-result');
var hqValue = document.getElementById('hq-result');
var note = document.getElementById('calc-method-note');
resultArea.style.display = 'block';
// Check eligibility rule 1: Must have wages in at least 2 quarters
if (quartersWithWages = 1.5 * High Quarter
// This is a simplified check. There is an alternate condition, but this is the primary one.
if (totalWages < (highQuarter * 1.5)) {
// Note: There is an alternate calculation for those who don't meet the 1.5 rule but it is complex.
// We will display a warning but proceed with calculation for estimation purposes.
note.innerHTML = "Warning: Your total base period wages ($" + totalWages.toLocaleString() + ") are less than 1.5x your high quarter wages. You may not qualify, or might be assessed under an alternate rule.";
} else {
note.innerHTML = "Calculation based on the standard 1/26th rule used by the NYS Department of Labor.";
}
// Calculate Rate: High Quarter / 26
var weeklyRate = highQuarter / 26;
// Apply Max Cap ($504 as of current regulation)
if (weeklyRate > 504) {
weeklyRate = 504;
}
// Apply rough Minimum Floor ($100 is the standard minimum if eligible)
if (weeklyRate < 100) {
weeklyRate = 100;
// However, if High Quarter is very low (e.g. < $2600), they might not qualify at all.
// Keeping it simple for the user.
}
// Format Output
resultValue.innerHTML = "$" + Math.floor(weeklyRate).toLocaleString(); // NYS usually rounds down to nearest dollar or exact dollar
resultValue.style.color = "#2c3e50";
hqValue.innerHTML = "$" + highQuarter.toLocaleString();
}