Skip to content

Instantly share code, notes, and snippets.

@ljgoe
Last active July 12, 2023 08:52
Show Gist options
  • Save ljgoe/2bde9e7036c015dcbe3929a7e1bdd58f to your computer and use it in GitHub Desktop.
Save ljgoe/2bde9e7036c015dcbe3929a7e1bdd58f to your computer and use it in GitHub Desktop.
Excel Stamp Duty Calculator - New South Wales Australia
=ROUND(
IF(D6 > 20000000, 163940 + 0.07 * (D6 - 3268000),
IF(D6 > 1168000, 47295 + 0.055 * (D6 - 1168000),
IF(D6 > 351000, 10530 + 0.045 * (D6 - 351000),
IF(D6 > 93000, 1500 + 0.035 * (D6 - 93000),
IF(D6 > 35000, 485 + 0.0175 * (D6 - 35000),
IF(D6 > 15000, 200 + 0.015 * (D6 - 14000),
0.0125 * D6)))))),)
Values based from July 1 2023
Reference source: https://www.revenue.nsw.gov.au/taxes-duties-levies-royalties/transfer-duty
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment