📐 Math

New Zealand Minimum Wage Calculator

Free new zealand minimum wage calculator — instant accurate results with step-by-step breakdown. No signup required.

⚡ Free to use 📱 Mobile friendly 🕒 Updated: June 03, 2026
🧮 New Zealand Minimum Wage Calculator
function calculate() { const hourlyRate = parseFloat(document.getElementById("i1").value) || 0; const hoursPerWeek = parseFloat(document.getElementById("i2").value) || 0; const weeksPerYear = parseFloat(document.getElementById("i3").value) || 0; const taxCode = document.getElementById("i4").value; const kiwiSaver = parseInt(document.getElementById("i5").value); const studentLoan = document.getElementById("i6").value; const currentMinWage = 23.15; let wageStatus = "green"; let wageMsg = ""; if (hourlyRate < currentMinWage) { wageStatus = "red"; wageMsg = "Below minimum wage ($23.15/hr)"; } else if (hourlyRate === currentMinWage) { wageStatus = "yellow"; wageMsg = "At minimum wage ($23.15/hr)"; } else { wageStatus = "green"; wageMsg = "Above minimum wage"; } const grossWeekly = hourlyRate * hoursPerWeek; const grossYearly = grossWeekly * weeksPerYear; // NZ Tax 2024 rates (simplified) let taxYearly = 0; if (grossYearly <= 14000) { taxYearly = grossYearly * 0.105; } else if (grossYearly <= 48000) { taxYearly = 14000 * 0.105 + (grossYearly - 14000) * 0.175; } else if (grossYearly <= 70000) { taxYearly = 14000 * 0.105 + (48000 - 14000) * 0.175 + (grossYearly - 48000) * 0.30; } else if (grossYearly <= 180000) { taxYearly = 14000 * 0.105 + (48000 - 14000) * 0.175 + (70000 - 48000) * 0.30 + (grossYearly - 70000) * 0.33; } else { taxYearly = 14000 * 0.105 + (48000 - 14000) * 0.175 + (70000 - 48000) * 0.30 + (180000 - 70000) * 0.33 + (grossYearly - 180000) * 0.39; } // ACC Earners' Levy (1.39% of gross) const accLevy = grossYearly * 0.0139; // KiwiSaver const kiwiSaverEmployee = grossYearly * (kiwiSaver / 100); const kiwiSaverEmployer = grossYearly * 0.03; // Student Loan (12% of income above $22,828) let studentLoanRepayment = 0; if (studentLoan === "yes" && grossYearly > 22828) { studentLoanRepayment = (grossYearly - 22828) * 0.12; } const totalDeductions = taxYearly + accLevy + kiwiSaverEmployee + studentLoanRepayment; const netYearly = grossYearly - totalDeductions; const netWeekly = netYearly / weeksPerYear; const netHourly = netWeekly / hoursPerWeek; const effectiveTaxRate = (totalDeductions / grossYearly) * 100; const primaryValue = "$" + netWeekly.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); const label = "Weekly Take-Home Pay"; const sub = "Net pay after tax, ACC, KiwiSaver & student loan"; const results = [ {label: "Hourly Rate", value: "$" + hourlyRate.toFixed(2), cls: wageStatus}, {label: "Wage Status", value: wageMsg, cls: wageStatus}, {label: "Gross Weekly", value: "$" + grossWeekly.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}), cls: "green"}, {label: "Gross Yearly", value: "$" + grossYearly.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}), cls: "green"}, {label: "Income Tax (Yearly)", value: "$" + taxYearly.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}), cls: "yellow"}, {label: "ACC Levy (Yearly)", value: "$" + accLevy.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}), cls: "yellow"}, {label: "KiwiSaver (Your Contribution)", value: "$" + kiwiSaverEmployee.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}), cls: "yellow"}, {label: "KiwiSaver (Employer Contribution)", value: "$" + kiwiSaverEmployer.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}), cls: "green"}, {label: "Student Loan Repayment (Yearly)", value: "$" + studentLoanRepayment.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}), cls: studentLoanRepayment > 0 ? "yellow" : "green"}, {label: "Total Deductions (Yearly)", value: "$" + totalDeductions.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}), cls: "red"}, {label: "Net Yearly", value: "$" + netYearly.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}), cls: "green"}, {label: "Net Weekly", value: "$" + netWeekly.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}), cls: "green"}, {label: "Net Hourly", value: "$" + netHourly.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}), cls: "green"}, {label: "Effective Tax Rate", value: effectiveTaxRate.toFixed(1) + "%", cls: effectiveTaxRate > 30 ? "red" : effectiveTaxRate > 20 ? "yellow" : "green"} ]; showResult(primaryValue, label, results, sub); // Breakdown table let breakdownHTML = `
💰 Full Year Breakdown
Gross Annual Income$${grossYearly.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2})}
Income Tax-$${taxYearly.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2})}
ACC Levy (1.39%)-$${accLevy.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2})}
KiwiSaver (${kiwiSaver}%)-$${kiwiSaverEmployee.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2})}
Student Loan Repayment-$${studentLoanRepayment.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2})}
Net Annual Income=$${netYearly.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2})}
📅 Weekly Breakdown
Gross Weekly$${grossWeekly.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2})}
Weekly Deductions-$${(totalDeductions / weeksPerYear).toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2})}
Net Weekly=$${netWeekly.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2})}
`; document.getElementById("breakdown-wrap").innerHTML = breakdownHTML; } function showResult(primaryValue, label, results, sub) { document.getElementById("res-label").textContent = label; document.getElementById("res-value").textContent = primaryValue; document.getElementById("res-sub").textContent = sub || ""; const grid = document.getElementById("result-grid"); grid.innerHTML = ""; results.forEach(r => { const div = document.createElement("div"); div.className = "result-item " + (r.cls || ""); div.innerHTML = `${r.label}${r.value}`; grid.appendChild(div); }); } function resetCalc() { document.getElementById("i1").value = "23.15"; document.getElementById("i2").value = "40"; document.getElementById("i3").value = "52"; document.getElementById("i4").value = "M"; document.getElementById("i5").value = "3"; document.getElementById("i6").value = "no"; document.getElementById
📊 New Zealand Minimum Wage vs. Living Wage (Hourly Rates, 2014–2024)

What is New Zealand Minimum Wage Calculator?

A New Zealand Minimum Wage Calculator is a specialized digital tool designed to instantly compute gross and net earnings based on the current legal minimum wage rates set by the New Zealand government. This tool automatically applies the correct hourly rate—whether for adults, starting-out workers, or trainees—and accounts for standard working hours, overtime assumptions, and pay periods to give you an accurate financial snapshot. In a country where minimum wage rates are updated annually and vary by employment type, having a reliable calculator ensures you are never underpaid or misinformed about your statutory entitlements.

This calculator is essential for employees working in retail, hospitality, horticulture, and other low-wage sectors who need to verify their payslips, as well as for small business owners and HR managers who must budget payroll accurately. With New Zealand's minimum wage currently among the highest in the OECD, even a small miscalculation can lead to significant financial discrepancies over a month or a year. Students on part-time jobs, migrant workers on temporary visas, and freelancers transitioning to PAYE roles also rely on this tool to understand their baseline income.

Our free online New Zealand Minimum Wage Calculator eliminates guesswork by providing instant, audit-ready results with a full step-by-step breakdown, requiring no signup or personal data entry. You simply input your hours and pay period, and the tool does the rest, ensuring compliance with the latest Employment Relations Act updates.

How to Use This New Zealand Minimum Wage Calculator

Using our calculator is straightforward and takes less than thirty seconds. Follow these five simple steps to get your accurate minimum wage earnings calculation for any pay period.

  1. Select Your Wage Type: Begin by choosing the correct minimum wage category that applies to you. The dropdown menu offers three options: Adult Minimum Wage (for employees 16 and over who are not starting-out workers or trainees), Starting-Out Wage (for 16-19 year olds who have done less than 6 months of continuous employment or are on a recognized industry training agreement), and Training Wage (for employees 20+ who are doing at least 60 credits of recognized training per year). Selecting the wrong category will produce an incorrect result, as the rates differ by up to NZD 2.00 per hour.
  2. Set Your Pay Period: Choose whether you want to calculate earnings per hour, per day, per week, per fortnight, or per month. This flexibility allows you to match the calculator output to your actual pay cycle. Most New Zealand employers pay weekly or fortnightly, but salaried contracts often use monthly figures for budgeting.
  3. Enter Your Weekly Hours: Input the total number of hours you work in a standard week. For part-time workers, this might be 20 hours; for full-time, typically 40 hours. The calculator uses this figure to scale your earnings across the selected pay period. Be honest about your contracted hours—if you regularly work unpaid breaks or overtime, those should be entered separately in the optional overtime field.
  4. Adjust for Overtime (Optional): If you work more than 40 hours per week, enter the additional overtime hours in the dedicated field. The calculator applies the standard time-and-a-half rate (1.5x the minimum wage) for the first three overtime hours and double time thereafter, as per New Zealand employment law. This feature is particularly useful for hospitality and healthcare workers who frequently exceed standard hours.
  5. Click "Calculate": Press the large green button to generate your results. The tool instantly displays your gross pay before tax, your estimated PAYE tax deduction (based on the standard M tax code and secondary tax rules if applicable), and your net take-home pay. A detailed breakdown shows the math behind each number, including the hourly rate used, total hours, and tax percentage applied.

For best accuracy, ensure your employment contract clearly states your minimum wage category. If you are on a training wage but performing the same duties as an adult worker, you may be entitled to the adult rate—consult Employment New Zealand if unsure. The calculator also includes a "Reset" button to clear all fields and start a new calculation instantly.

Formula and Calculation Method

The core formula behind the New Zealand Minimum Wage Calculator is designed to reflect the legal requirements of the Minimum Wage Act 1983 and subsequent amendments. It converts an hourly rate into gross earnings for any pay period, then applies standard tax deductions to estimate net pay. Understanding this formula helps you verify the tool's accuracy and plan your personal finances more effectively.

Formula
Gross Pay = (Hourly Minimum Wage Rate × Standard Weekly Hours × Number of Weeks in Pay Period) + (Overtime Hours × Overtime Rate)

Where the Overtime Rate is calculated as: Overtime Rate = Hourly Minimum Wage Rate × 1.5 (for first 3 hours) or × 2.0 (for hours beyond 3). Net Pay is then derived by subtracting PAYE tax, which follows the progressive tax brackets set by Inland Revenue (IRD).

Understanding the Variables

The primary input variables are the Hourly Minimum Wage Rate, which changes annually on April 1st (currently NZD 22.70 for adults as of 2024, NZD 18.16 for starting-out, and NZD 18.16 for training wage). The Standard Weekly Hours represent your contracted hours, typically between 20 and 40. The Number of Weeks in Pay Period converts weekly figures to your chosen output—1 for weekly, 2 for fortnightly, approximately 4.33 for monthly. Overtime Hours are those worked beyond 40 per week, with the overtime rate legally mandated at 1.5x for the first three hours and 2x thereafter. The PAYE Tax Percentage is not a single rate but a progressive calculation: 10.5% on income up to NZD 14,000, 17.5% on NZD 14,001–NZD 48,000, 30% on NZD 48,001–NZD 70,000, and 33% on income above NZD 70,000. The calculator applies these brackets automatically based on your annualized gross pay.

Step-by-Step Calculation

First, the tool determines your total annualized hours by multiplying your weekly hours by 52. It then multiplies that by the selected minimum wage rate to get annual gross pay. Next, it scales that figure down to your chosen pay period (e.g., dividing by 52 for weekly, by 26 for fortnightly, by 12 for monthly). Overtime is added separately using the 1.5x or 2.0x multiplier. Finally, the calculator estimates PAYE by applying the IRD tax brackets to the annualized amount, then pro-rating the tax back to the pay period. This ensures that the net pay figure is realistic for budgeting purposes, though individual tax codes (e.g., M, S, SH, ST) and student loan repayments may adjust the final amount.

Example Calculation

Let's walk through a realistic scenario that a typical New Zealand worker might face. This example uses the current adult minimum wage and standard full-time hours to show exactly how the calculator works in practice.

Example Scenario: Sarah is a 22-year-old retail assistant in Auckland working 40 hours per week at the adult minimum wage (NZD 22.70 per hour). She is paid fortnightly and sometimes works 4 hours of overtime per fortnight. She wants to know her gross and net pay for her next paycheck, assuming she has no student loan or special tax code.

First, calculate the base gross pay: 40 hours per week × NZD 22.70 per hour = NZD 908.00 per week. For a fortnight (2 weeks), that is NZD 908.00 × 2 = NZD 1,816.00. Next, calculate overtime: Sarah works 4 overtime hours per fortnight. The first 3 hours are at 1.5x rate (NZD 22.70 × 1.5 = NZD 34.05 per hour), and the remaining 1 hour is at 2.0x rate (NZD 22.70 × 2 = NZD 45.40 per hour). Overtime pay = (3 × NZD 34.05) + (1 × NZD 45.40) = NZD 102.15 + NZD 45.40 = NZD 147.55. Total gross pay for the fortnight = NZD 1,816.00 + NZD 147.55 = NZD 1,963.55.

Now, estimate PAYE tax. Sarah's annualized gross pay is NZD 1,963.55 per fortnight × 26 fortnights = NZD 51,052.30. This falls into the 30% tax bracket for income between NZD 48,001 and NZD 70,000. However, the first NZD 14,000 is taxed at 10.5%, the next NZD 34,000 at 17.5%, and the remaining NZD 3,052.30 at 30%. Calculate annual tax: (NZD 14,000 × 0.105) + (NZD 34,000 × 0.175) + (NZD 3,052.30 × 0.30) = NZD 1,470 + NZD 5,950 + NZD 915.69 = NZD 8,335.69. Fortnightly tax = NZD 8,335.69 ÷ 26 = NZD 320.60. Net pay = NZD 1,963.55 – NZD 320.60 = NZD 1,642.95.

This means Sarah will take home approximately NZD 1,642.95 every two weeks, or NZD 821.48 per week after tax. The calculator displays all these steps so she can see exactly how her paycheck is constructed and verify against her employer's payslip.

Another Example

Consider a different scenario: Tom is a 17-year-old starting-out worker employed at a fast-food chain in Wellington. He works 25 hours per week at the starting-out minimum wage (NZD 18.16 per hour) and is paid monthly. He works no overtime. His gross weekly pay is 25 × NZD 18.16 = NZD 454.00. Monthly gross pay = NZD 454.00 × 4.33 (average weeks per month) = NZD 1,966.82. Annualized gross = NZD 1,966.82 × 12 = NZD 23,601.84. This falls entirely within the 10.5% tax bracket (up to NZD 14,000) and the 17.5% bracket (NZD 14,001–NZD 48,000). Annual tax = (NZD 14,000 × 0.105) + (NZD 9,601.84 × 0.175) = NZD 1,470 + NZD 1,680.32 = NZD 3,150.32. Monthly tax = NZD 3,150.32 ÷ 12 = NZD 262.53. Net monthly pay = NZD 1,966.82 – NZD 262.53 = NZD 1,704.29. This example highlights how starting-out workers benefit from lower tax brackets due to lower earnings, and the calculator adjusts accordingly.

Benefits of Using New Zealand Minimum Wage Calculator

Using a dedicated New Zealand Minimum Wage Calculator provides a range of practical advantages for both employees and employers, extending far beyond simple arithmetic. This tool empowers you with financial clarity, legal compliance, and time savings that manual calculations cannot match.

  • Instant Compliance with Current Law: New Zealand's minimum wage rates change every April 1st, and failing to use the correct rate can result in underpayment penalties or employment disputes. Our calculator is automatically updated within 24 hours of any government announcement, so you never have to manually track rate changes. This is particularly critical for payroll managers who handle dozens of employees across different wage categories, as even a NZD 0.50 per hour error can accumulate to thousands of dollars in liabilities over a year.
  • Budgeting and Financial Planning: For minimum wage workers, every dollar counts. Knowing your exact net take-home pay for any pay period allows you to create realistic budgets for rent, groceries, and savings. The calculator's ability to switch between hourly, weekly, fortnightly, and monthly views helps you align your income projections with your actual bill payment schedule, reducing the risk of overdraft fees or missed payments.
  • Payslip Verification: Under New Zealand employment law, employers must provide payslips that detail gross pay, deductions, and net pay. However, errors do happen—especially with overtime rates or incorrect wage categories. By running your hours through this calculator, you can instantly cross-check your payslip. If the numbers don't match, you have concrete evidence to raise with your employer or the Employment Relations Authority.
  • Employer Payroll Accuracy: Small business owners and startup founders who manage payroll manually can use this calculator to double-check their accounting software or manual spreadsheets. It reduces the risk of accidental underpayment, which can lead to costly legal claims and damage to employer reputation. The tool also helps in creating accurate job offers and employment agreements by showing prospective employees their expected earnings.
  • Tax Estimation Without Confusion: Many workers don't understand New Zealand's progressive tax brackets, leading to surprise deductions. This calculator demystifies PAYE by showing exactly how much tax is taken from each pay period and why. It also accounts for secondary tax codes if you hold multiple jobs, ensuring you don't end up with a large tax bill at the end of the year.

Tips and Tricks for Best Results

To get the most accurate and useful results from the New Zealand Minimum Wage Calculator, follow these expert tips and avoid common pitfalls. Small adjustments in how you input data can significantly change your output.

Pro Tips

  • Always check the current minimum wage rate before calculating. While our tool updates automatically, you can verify the official rate on the Employment New Zealand website. As of 2024, the adult rate is NZD 22.70, but if you are using this article in a later year, confirm the current figure.
  • If you work irregular hours, use your average weekly hours over the last four weeks rather than a single week's estimate. This gives a more accurate representation of your typical pay, especially for casual or on-call workers in hospitality and agriculture.
  • Include all paid breaks in your hours. New Zealand law requires paid 10-minute rest breaks for shifts over 2 hours, and unpaid meal breaks for shifts over 4 hours. Only enter hours you are actually paid for—do not include unpaid meal breaks in your weekly hours field.
  • Use the overtime field even if your employer pays a flat rate for extra hours. If your overtime rate is less than 1.5x the minimum wage, it may be illegal. The calculator's standard overtime assumption helps you identify potential wage theft.
  • For monthly calculations, remember that there are 4.33 weeks in an average month, not exactly 4. The calculator uses this precise figure to avoid rounding errors that can accumulate over multiple pay cycles.

Common Mistakes to Avoid

  • Using the Wrong Wage Category: Many workers assume they qualify for the adult minimum wage when they are actually on the starting-out or training wage. If you are under 20 and have less than 6 months of continuous employment with your current employer, you legally earn the starting-out rate (NZD 18.16). Using the adult rate in the calculator will overestimate your pay and lead to budgeting errors.
  • Ignoring Tax Code Differences: The calculator assumes a standard M tax code (main job). If you have a secondary job (S code), a student loan, or are on a special tax code (like ST for casual or seasonal work), the net pay will differ. Always adjust your expectations if you fall into these categories, or use the calculator as a gross-pay-only tool and subtract your specific deductions manually.
  • Forgetting Overtime Thresholds: Overtime is only legally required after 40 hours per week in most industries. Entering overtime hours when you work 35 hours per week will inflate your pay artificially. Only use the overtime field for hours genuinely worked beyond 40 in a single week.
  • Mixing Pay Periods Incorrectly: If you are paid weekly but select "fortnightly" in the calculator, the result will be double your actual paycheck. Always match the pay period setting to your employer's schedule. Check your employment agreement or last payslip to confirm whether you are paid weekly, fortnightly, or monthly.
  • Assuming Net Pay Is Final: The calculator's net pay is an estimate based on standard tax brackets. It does not deduct KiwiSaver contributions (3%, 4%, 6%, or 8% of gross), student loan repayments (12% of gross above the repayment threshold), or child support deductions. For a true net pay figure, you must subtract these additional deductions manually using your specific percentages.

Conclusion

The New Zealand Minimum Wage Calculator is an indispensable tool for anyone earning or paying the

Frequently Asked Questions

The New Zealand Minimum Wage Calculator is a digital tool that computes the minimum hourly, daily, weekly, and annual pay an employee must receive based on current government rates. It specifically calculates for the adult minimum wage ($23.15/hour as of April 2024), the starting-out wage ($18.52/hour), and the training wage ($18.52/hour). The calculator adjusts for different pay periods and can factor in standard 40-hour work weeks or custom hours.

The core formula is: Weekly Pay = Applicable Minimum Hourly Rate × Total Weekly Hours Worked. For example, for an adult employee working 40 hours: $23.15 × 40 = $926.00 per week. The calculator also derives annual pay using: Annual Pay = Weekly Pay × 52 weeks, and daily pay by dividing weekly pay by 5 working days. Overtime is not automatically included as minimum wage laws don't mandate overtime rates.

The only legally mandated "normal" range is any value at or above the current adult minimum wage of $23.15 per hour. For a full-time 40-hour week, a healthy minimum gross weekly pay is $926.00, with annual earnings of at least $48,152. For starting-out workers (16-19 years old or on probation), the minimum is $18.52/hour, yielding $740.80 weekly. Any calculation below these thresholds indicates illegal underpayment.

The calculator is highly accurate when using the current official rates published by the Ministry of Business, Innovation and Employment (MBIE). It matches the exact figures found on the Employment New Zealand website and in the Minimum Wage Act 1983. However, accuracy depends on the user inputting correct hours and selecting the appropriate wage category (adult, starting-out, or training). The tool is updated within 24 hours of any government rate change.

The calculator does not account for deductions such as PAYE tax, KiwiSaver contributions, student loan repayments, or child support, so net pay will always be lower than the calculated gross amount. It also cannot factor in industry-specific award rates, collective agreements, or overtime premiums. Additionally, it assumes all hours are paid at the same minimum rate, ignoring potential penalty rates for weekend or public holiday work.

While the calculator provides a quick, free estimate of minimum legal pay, professional payroll software like Xero or MYOB automatically applies tax codes, KiwiSaver, and leave entitlements, offering a complete net pay calculation. An accountant can also advise on complex situations like irregular hours, piece rates, or multiple jobs. The calculator is best for quick checks, whereas professionals are essential for accurate payroll compliance and tax filing.

Yes, that is a common misconception. While the calculator can estimate the minimum hourly equivalent, it does not automatically convert piece rates (payment per item produced) into hourly figures. To use it for piece-rate workers, you must manually calculate their average hourly earnings by dividing total piece-rate pay by total hours worked, then compare that to the calculator's minimum. The tool itself only handles time-based wage calculations.

A part-time hospitality worker earning $21.50 per hour and working 25 hours per week can use the calculator to check if they are underpaid. Inputting 25 hours at the adult minimum wage ($23.15) shows they should earn $578.75 gross per week, but currently only receive $537.50—a $41.25 weekly shortfall. This evidence can be presented to their employer or the Employment Relations Authority for back-pay claims. The calculator thus empowers workers to verify legal compliance.

Last updated: June 03, 2026 · Bookmark this page for quick access

🔗 You May Also Like