Skip to content

Instantly share code, notes, and snippets.

View ljgoe's full-sized avatar

LG ljgoe

  • Australia
  • 12:13 (UTC +10:00)
View GitHub Profile
@ljgoe
ljgoe / Excel_Stamp_Duty_Calculator-NSW_Australia
Last active July 12, 2023 08:52
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