Last active
November 20, 2016 03:48
-
-
Save pauldwhitman/fbb89a9fe7450276ded4740684383ff9 to your computer and use it in GitHub Desktop.
Microsoft Excel formula for calculating stamp duty in South Australia (SA), Australia.
This file contains hidden or 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(A1 >= 500000 , 21330 + 0.055 * (A1 - 500000), | |
| IF(A1 >= 300000 , 11330 + 0.05 * (A1 - 300000), | |
| IF(A1 >= 250000 , 8955 + 0.0475 * (A1 - 250000), | |
| IF(A1 >= 200000 , 6830 + 0.0425 * (A1 - 200000), | |
| IF(A1 >= 100000 , 2830 + 0.04 * (A1 - 100000), | |
| IF(A1 >= 50000 , 1080 + 0.035 * (A1 - 50000), | |
| IF(A1 >= 30000 , 480 + 0.03 * (A1 - 30000), | |
| IF(A1 >= 12000 , 120 + 0.02 * (A1 - 12000), | |
| 0.01 * A1) | |
| ))))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment