pedro-egoli
Well-known Member
- Joined
- Apr 25, 2004
- Messages
- 1,217
- Office Version
- 2016
- Platform
- Windows
Would be grateful for a formula to assist me calculate australian tax on forecast incomes.
Tax rates in Australia are
$1 to $6000 Nil
$6001 to $21600 17cents for each $1 over $6000
$21601 to $52000 $2652 + 30 cents for each $1 over $21,600
$52001 to $62500 $11772 +42 cents for each $1 over $52000
$62501 and over $16182 + 47cents for each $1 over $62500
My attempt produced the following and I mention that I have a Named Range (Income) in cell B1 which a friend did for me and left me to my own devices to do the formula.
When I try this I get a message "Your formula is mising a parenthesis--)or(.check the formula and then add the parenthesis in the appropriate place."
For guidance the tax on $30000 is $5172 and for $50000 is $11172.
Any assistance will be greatly appreciated.
Pedro
Tax rates in Australia are
$1 to $6000 Nil
$6001 to $21600 17cents for each $1 over $6000
$21601 to $52000 $2652 + 30 cents for each $1 over $21,600
$52001 to $62500 $11772 +42 cents for each $1 over $52000
$62501 and over $16182 + 47cents for each $1 over $62500
My attempt produced the following and I mention that I have a Named Range (Income) in cell B1 which a friend did for me and left me to my own devices to do the formula.
Code:
=IF(Income<6000,0,IF(Income<21,600,(income-6000)*0.17,IF(Income<52000,2652+(income-21601)*0.3,IF(INCOME<62500,11772+(income-52001)*.42,IF(INCOME>62501,16182+(INCOME>62501*.47))))
When I try this I get a message "Your formula is mising a parenthesis--)or(.check the formula and then add the parenthesis in the appropriate place."
For guidance the tax on $30000 is $5172 and for $50000 is $11172.
Any assistance will be greatly appreciated.
Pedro