Estimate your weekly New York State Unemployment Insurance (UI) benefit rate based on your base period wages.
Please enter valid positive numbers for at least two quarters.
Total Base Period Wages:$0.00
High Quarter Wages:$0.00
Estimated Weekly Benefit:$0.00
Understanding Your NYS Unemployment Benefit Rate
For residents of New York State, understanding how Unemployment Insurance (UI) benefits are calculated is crucial when facing job loss. The New York State Department of Labor (NYS DOL) uses a specific formula based on your past earnings to determine your weekly benefit amount. This calculator mimics that logic to give you an estimate of what you can expect.
The Base Period Calculation
Your benefit rate is determined by the wages you earned during your "Base Period." The Basic Base Period consists of the first four of the last five completed calendar quarters before you file your claim.
If you have not earned enough in the Basic Base Period to qualify, the state may look at the "Alternate Base Period," which is the last four completed calendar quarters.
The 1/26 Rule
New York State primarily uses the "High Quarter" method to calculate benefits. The quarter in your base period where you earned the most money is your "High Quarter."
Standard Calculation: Generally, your weekly benefit rate is 1/26th of your High Quarter wages.
The Math: If you earned $13,000 in your highest quarter, your weekly rate would be roughly $13,000 รท 26 = $500.
Maximum and Minimum Limits
Regardless of how much you earned, there are statutory limits on the benefit amount:
Maximum Rate: The current maximum weekly benefit rate in New York is $504. Even if your high quarter wages were $20,000, you will still receive $504.
Minimum Rate: The minimum weekly benefit rate is generally $104.
Eligibility Requirements: To qualify, you must have worked and been paid wages in at least two calendar quarters of your base period, earned at least $2,900 in your high quarter (as of recent updates), and your total base period wages must be at least 1.5 times your high quarter wages.
Partial Unemployment
If you work part-time while collecting unemployment in New York, your benefits may be reduced based on the number of hours you work or the amount you earn. New York uses a system based on hours worked rather than just days worked, allowing for more flexibility for claimants picking up part-time shifts.
Why Use This Calculator?
While the official determination comes from the NYS DOL after you file a claim, this Benefit Rate Calculator NY helps you budget and plan financially during the transition period between jobs. By inputting your gross quarterly wages, you can instantly see if you hit the maximum cap or where you fall on the benefit scale.
function calculateBenefit() {
// 1. Get Input Values
var q1 = document.getElementById("q1Wages").value;
var q2 = document.getElementById("q2Wages").value;
var q3 = document.getElementById("q3Wages").value;
var q4 = document.getElementById("q4Wages").value;
// 2. Parse Float and handle empty strings
var w1 = parseFloat(q1) || 0;
var w2 = parseFloat(q2) || 0;
var w3 = parseFloat(q3) || 0;
var w4 = parseFloat(q4) || 0;
var errorDiv = document.getElementById("errorMsg");
var resultDiv = document.getElementById("result-area");
// 3. Validation: Check for negative numbers
if (w1 < 0 || w2 < 0 || w3 < 0 || w4 < 0) {
errorDiv.style.display = "block";
resultDiv.style.display = "none";
errorDiv.innerHTML = "Wages cannot be negative.";
return;
}
// 4. Calculate Stats
var wagesArray = [w1, w2, w3, w4];
var totalWages = w1 + w2 + w3 + w4;
var highQuarterWage = Math.max(w1, w2, w3, w4);
// Count quarters with earnings
var quartersWorked = 0;
for (var i = 0; i 0) quartersWorked++;
}
// 5. Basic Eligibility Logic for NYS
// Rule 1: Must have wages in at least 2 quarters
// Rule 2: High Quarter wages must be at least $1,600 (approximate historical floor, currently higher for optimal rates)
// Rule 3: Total wages must be 1.5x High Quarter Wages (exceptions apply for very high earners, but this is the general rule)
var isEligible = true;
var eligibilityMsg = "Based on the standard 1/26th rule.";
if (quartersWorked < 2) {
isEligible = false;
eligibilityMsg = "You generally need wages in at least 2 quarters to qualify.";
} else if (highQuarterWage < 1600) {
isEligible = false;
eligibilityMsg = "High quarter wages are typically too low to establish a valid claim.";
} else if (totalWages 504) {
weeklyRate = 504;
eligibilityMsg += " (Capped at NYS Maximum)";
}
// Min is roughly $104
if (isEligible && weeklyRate < 104) {
weeklyRate = 104;
}
// If not eligible, rate is 0
if (!isEligible) {
weeklyRate = 0;
}
// 8. Display Results
errorDiv.style.display = "none";
resultDiv.style.display = "block";
// Helper for currency formatting
var formatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD',
});
document.getElementById("displayTotalWages").innerHTML = formatter.format(totalWages);
document.getElementById("displayHighQuarter").innerHTML = formatter.format(highQuarterWage);
document.getElementById("displayWeeklyBenefit").innerHTML = formatter.format(weeklyRate);
var noteElement = document.getElementById("eligibilityNote");
if (!isEligible) {
noteElement.style.color = "#dc3545";
noteElement.innerHTML = "Eligibility Warning: " + eligibilityMsg;
} else {
noteElement.style.color = "#28a745";
noteElement.innerHTML = "Status: Likely Eligible. " + eligibilityMsg;
}
}