SDLT Calculation Excel Formula

Mayur Jagtap

New Member
Joined
Nov 7, 2021
Messages
1
Office Version
  1. 2013
Platform
  1. Windows
Can someone help me to create an excel formula for the updated version of UK SDLT ?
 

Attachments

  • WhatsApp Image 2021-11-06 at 12.47.23 PM.jpeg
    WhatsApp Image 2021-11-06 at 12.47.23 PM.jpeg
    114.8 KB · Views: 22

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Welcome to the forum.

You did not provide very much information.
Please provide a clear explanation of the brackets and examples with expected results.

A guess follows. Edit for your actual requirements.

N.B. You can paste the example into a clean sheet. Click on the icon below the f(x) in the header and then move to your sheet and paste.

Commission2020.xlsm
ABCD
12,000,000.00Sumproduct with Named Ranges153,750.00
2 as above criteria in formula153,750.00
3
4Bracket [rB]RateRate Delta [rR]
5
600.00%0.00%
7125,0002.00%2.00%
8250,0005.00%3.00%
9925,00010.00%5.00%
101,500,00012.00%2.00%
11
SDLT
Cell Formulas
RangeFormula
C1C1=SUMPRODUCT(--(A1>rB),A1-rB,rR)
C2C2=SUMPRODUCT(--(A1>{0;125000;250000;925000;1500000}),A1-{0;125000;250000;925000;1500000},{0;0.02;0.03;0.05;0.02})
D6:D10D6=C6-N(C5)
Named Ranges
NameRefers ToCells
rB=SDLT!$B$6:$B$10C1
rR=SDLT!$D$6:$D$10C1
 
Upvote 0
An example that includes an option for First purchase'

Commission2020.xlsm
ABCDE
1Purchase TypeFirstFirst
2Amount450,000.00Maximum500,000.00
3SDLT7,500.00Threshold300,000.00
4Rate5%
SDLT
Cell Formulas
RangeFormula
B3B3=IF(AND(B1=D1,B2<E2),MAX(0,(B2-E3)*0.05),SUMPRODUCT(--(B2>aB),B2-aB,aR))


Commission2020.xlsm
ABC
1Purchase Type
2Amount800,000.00
3SDLT30,000.00
4
SDLT
Cell Formulas
RangeFormula
B3B3=IF(AND(B1=D1,B2<E2),MAX(0,(B2-E3)*0.05),SUMPRODUCT(--(B2>aB),B2-aB,aR))


N.B. You can use the table shown previously or use the values and use the formula without the table.
You can secure the values from the table above (highlight the name and press F9) or by looking at the brackets and rates.
For this post, I used Excel's Name Manager and created new names for the Bracket data and Rate Differential data
The names are as follows:
aB ={0;125000;250000;925000;1500000}
aR={0;0.02;0.03;0.05;0.02}
 
Upvote 0

Forum statistics

Threads
1,214,915
Messages
6,122,212
Members
449,074
Latest member
cancansova

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