Excel : Transfer /Duty

Dolby

Honorary Master
Joined
Jan 31, 2005
Messages
39,162
Reaction score
6,146
How would I make the following in Excel, assuming property price is cell A1 ?

Looks pretty complex and I've downloaded a bond calculator, but can't find an Excel template calculator


1602679569005.png
 
This should work:
Code:
=IFS(
   A1 > 11000000, 1026000 + ((A1 - 11000000) * 0.13),
   A1 >  2475000,   88250 + ((A1 -  2475000) * 0.11),
   A1 >  1925000,   44250 + ((A1 -  1925000) * 0.08),
   A1 >  1375000,   11250 + ((A1 -  1375000) * 0.06),
   A1 >  1000000,       0 + ((A1 -  1000000) * 0.03),
   TRUE, 0
)
 
Top
Sign up to the MyBroadband newsletter
X