Last active
July 7, 2020 01:21
-
-
Save alangrainger/d58d2011257ff0de7f39a0320f59848f to your computer and use it in GitHub Desktop.
Formula for calculating NZ Income Tax / PAYE on monthly income. Works for Excel or Google Sheets.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=IF(E2<=1166.67,SUM(E2*10.5%),IF(E2<=4000,SUM(E2-1166.67)*17.5%+122.5,IF(E2<=5833.33,SUM(E2-4000)*30%+618.33,SUM(E2-5833.33)*33%+1168.33))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment