Skip to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

UK stamp duty calc

Featured Replies

  • Newbies

UK Stamp Duty Calculator 2019

Hi, does anyone know how to convert an excel formula to a filmmaker calculation? To be honest I'm looking for a calculation for UK Stamp Duty and although there are plenty of excel files to use, I don't know how to do this in Filemaker Pro.

There are two types of calculations depending on if it's your 1st home or 2nd Home. See below.

1st home:

=SUMPRODUCT(--(B3>{125000;250000;925000;1500000}), (B3-{125000;250000;925000;1500000}), {0.02;0.03;0.05;0.02})

2nd home

=SUMPRODUCT(--(B3>{125000;250000;925000;1500000}), (B3-{125000;250000;925000;1500000}), {0.02;0.03;0.05;0.02})+(B3*0.03)

 

Thank you

If you just want a quick calculator, you could do a simple Case() statement along the lines of:

Case (
Price > 1500000 ; ( Price - 1500000 ) * .12 + 93750 ;
Price > 925000 ; ( Price - 925000 ) * .10 + 36250 ;
Price > 250000 ; ( Price - 250000 ) * .05 + 2500 ;
Price > 125000 ; ( Price - 125000 ) * .02 
)

(the above is based on the example here.)

Or, to simulate what your Excel formula does:

Sum (
If ( Price > 125000 ; ( Price - 125000 ) * .02 ) ;
If ( Price > 250000 ; ( Price - 250000 ) * .03 ) ;
If ( Price > 925000 ; ( Price - 925000 ) * .05 ) ;
If ( Price > 1500000 ; ( Price - 1500000 ) * .02 ) 
)

However, it is not good practice to hard-code tax brackets and rates into a calculation formula, as these will change over time. A better solution would store the current brackets and rates in a preferences table or a table of their own, and lookup from there.

Please update your profile to reflect your version and OS, so that we know what you can use.

 

Edited by comment

  • Author
  • Newbies

Amazing, thanks for your help.

It's not working right for me yet, I'm clearly doing something wrong. But I'm sure with a little play I can get it to work.

P.S. Profile updated. 

Create an account or sign in to comment

Important Information

By using this site, you agree to our Terms of Use.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.