Skip to content

Instantly share code, notes, and snippets.

@pauldwhitman
Last active November 20, 2016 03:42
Show Gist options
  • Save pauldwhitman/a56e0008c49bf2f4da2be04081d4abf2 to your computer and use it in GitHub Desktop.
Save pauldwhitman/a56e0008c49bf2f4da2be04081d4abf2 to your computer and use it in GitHub Desktop.
Microsoft Excel formula for calculating stamp duty in Queensland (QLD), Australia.
=ROUND(
IF(A1 > 1000000 , 38025 + 0.0575 * (A1 - 1000000),
IF(A1 > 540000 , 17325 + 0.045 * (A1 - 540000),
IF(A1 > 75000 , 1050 + 0.035 * (A1 - 75000),
IF(A1 > 5000 , 0.015 * (A1 - 5000),
0))))
,)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment