calculating taxes

already

Board Regular
Joined
Nov 11, 2008
Messages
179
Hi,

I have to calculate taxes on an amount of 283000 euro and for furter use as template

3% on the first 50.000 euro
9% till 250.000 euro
27% above 250.000 euro

What is the best formula to use for this.

Thanks in advance

Kind reagrds

Al
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Hi...

Hope this will help.....

A B
50 0.03
200 0.09
=283000-250 0.27
=SUM(A1:A3) =(A1*B1)+(A2*B2)+((A4-250)*B3)
 
Upvote 0
Hi,

Another alternative might be to set-up something like below:
Excel Workbook
ABC
1BracketRateAmount Split
2500003%50000
32500009%200000
4>25000027%33000
5
6Amount283000
7Tax28410
Sheet1
Excel 2010
Cell Formulas
RangeFormula
C2=IF(B6>A2,A2,B6)
C3=IF(B6>A3,A3-A2,B6-C2)
C4=IF(B6>A3,B6-A3,0)
B7=SUMPRODUCT(B2:B4,C2:C4)
 
Upvote 0
Or maybe this array formula (you need to confirm it with Ctrl-Shift-Enter not just Enter):
Excel Workbook
AB
1RateBracket
23%0
39%50000
427%250000
5Amount283000
6Tax28410
Sheet1
Excel 2010
#VALUE!
Entered with Ctrl+Shift+Enter. If entered correctly, Excel will surround with curly braces {}.
 
Upvote 0

Forum statistics

Threads
1,214,788
Messages
6,121,600
Members
449,038
Latest member
Arbind kumar

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