Programming a Transfer Duty Formula

Kaleido

New Member
Joined
Feb 4, 2014
Messages
2
Hey Guys

How do i program the following formula?

VALUE OF PROPERTY: TRANSFER COST

0-600 000 ______________0%
600 001 - 1 000 000 _____ 3% of value exceeding 600 000
1 000 001 - 1 500 000____ 12 000 plus 5% of value exceeding 1 000 000
1 500 001 and above_____ 37000 + 8% of value exceeding 1 500 000

I want to be able to type in the Property Value and get the transfer cost.

I do not have a cooking clue on how to do this???

Any help would be appreciated.
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
you need a look up table similar to this

0 0 0 0
600001 600000 0 .03
1000001 1000000 12000 .05
1500001 1500000 37000 .08

lookup house price in the table and formula is (houseprice-vlookup(houseprice, mytable,2))*vlookup(houseprice,mytable,4) +vlookup(houseprice,mytable,3)
 
Upvote 0

Forum statistics

Threads
1,223,719
Messages
6,174,089
Members
452,542
Latest member
Bricklin

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top