#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Stamp Duty

I am trying to write a formula to calculate the stamp duty in the UK as
follows for Excel 2000. Below CELL is the value of the property purchased
i.e £310000

If CELL value < 250000 then answer = 1% of CELL value
If CELL value =250000 and <500000 then answer = 3% of CELL value
If CELL value 500000 then answer = 4% of CELL value

In the above example where CELL = 310000 the answer should be 9300

Thanks for your help
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,339
Default Stamp Duty

Try:

=IF(A1<250000,A1*0.01,IF(A1<=500000,A1*0.03,A1*0.0 4))

I assumed <= 500000 ss it wasn't clear from your posting

HTH

"Mr Stanley (UK)" wrote:

I am trying to write a formula to calculate the stamp duty in the UK as
follows for Excel 2000. Below CELL is the value of the property purchased
i.e £310000

If CELL value < 250000 then answer = 1% of CELL value
If CELL value =250000 and <500000 then answer = 3% of CELL value
If CELL value 500000 then answer = 4% of CELL value

In the above example where CELL = 310000 the answer should be 9300

Thanks for your help

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Stamp Duty

Thanks very much - your formula is correct.

"Toppers" wrote:

Try:

=IF(A1<250000,A1*0.01,IF(A1<=500000,A1*0.03,A1*0.0 4))

I assumed <= 500000 ss it wasn't clear from your posting

HTH

"Mr Stanley (UK)" wrote:

I am trying to write a formula to calculate the stamp duty in the UK as
follows for Excel 2000. Below CELL is the value of the property purchased
i.e £310000

If CELL value < 250000 then answer = 1% of CELL value
If CELL value =250000 and <500000 then answer = 3% of CELL value
If CELL value 500000 then answer = 4% of CELL value

In the above example where CELL = 310000 the answer should be 9300

Thanks for your help

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Stamp Duty

Thanks Ardus - there is an error in your formula. See Toppers reply.
Thank you anyway for your reply.

"Ardus Petus" wrote:

Say CELL is A1

=A1*IF(A1<250000,0.01,IF(A1<50000,0.03,0.04))

HTH
--
AP

"Mr Stanley (UK)" <Mr Stanley a écrit dans
le message de news: ...
I am trying to write a formula to calculate the stamp duty in the UK as
follows for Excel 2000. Below CELL is the value of the property purchased
i.e £310000

If CELL value < 250000 then answer = 1% of CELL value
If CELL value =250000 and <500000 then answer = 3% of CELL value
If CELL value 500000 then answer = 4% of CELL value

In the above example where CELL = 310000 the answer should be 9300

Thanks for your help




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Please help with enclosed schedule of duty Huawei Excel Worksheet Functions 10 January 13th 06 02:46 PM
date/time stamp Jan Excel Worksheet Functions 7 July 14th 05 01:04 PM
Time stamp in Excel Sheet John M Excel Discussion (Misc queries) 3 June 28th 05 02:05 PM
bringing data from one workbook to another using a date stamp func tifosi3 Excel Worksheet Functions 0 April 5th 05 12:13 AM
Time Stamp without change AntonyY Excel Discussion (Misc queries) 3 November 26th 04 09:13 AM


All times are GMT +1. The time now is 01:13 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"