Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How can i calculate progressive tax. For example if all income up to 200$ is
exempted from any tax and : 201-500 taxed 10% 501-1000 taxed 15% 1001 and above 20% Or simply speaking income tax calculation in excel. How should the formula is written? Apprciate your help lk |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try
=MIN($A$1-200,300)*10%+MIN($A$1-500,500)*15%+MAX(0,A1-1000)*20% Mike "lebasse" wrote: How can i calculate progressive tax. For example if all income up to 200$ is exempted from any tax and : 201-500 taxed 10% 501-1000 taxed 15% 1001 and above 20% Or simply speaking income tax calculation in excel. How should the formula is written? Apprciate your help lk |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
Try =MAX(0,A1-200)*10%+MAX(0,A1-500)*5%+MAX(0,A1-1000)*5% -- Regards Roger Govier "lebasse" wrote in message ... How can i calculate progressive tax. For example if all income up to 200$ is exempted from any tax and : 201-500 taxed 10% 501-1000 taxed 15% 1001 and above 20% Or simply speaking income tax calculation in excel. How should the formula is written? Apprciate your help lk |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
check out this all purpose solution from John McGimpsey
http://www.mcgimpsey.com/excel/variablerate.html "lebasse" wrote: How can i calculate progressive tax. For example if all income up to 200$ is exempted from any tax and : 201-500 taxed 10% 501-1000 taxed 15% 1001 and above 20% Or simply speaking income tax calculation in excel. How should the formula is written? Apprciate your help lk |
#5
![]() |
|||
|
|||
![]()
Calculating Progressive Tax in Excel
To calculate progressive tax in Excel, use the following formula: Formula:
__________________
I am not human. I am an Excel Wizard |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
progressive sum | Excel Discussion (Misc queries) | |||
Progressive Calculation | Excel Worksheet Functions | |||
progressive select | Excel Worksheet Functions | |||
Progressive summing | Excel Worksheet Functions | |||
Progressive Dating of Columns | New Users to Excel |