+ Reply to Thread
Results 1 to 6 of 6

Excel 2007 : if statement

  1. #1
    Registered User
    Join Date
    08-19-2008
    Location
    Auckland, NZ
    MS-Off Ver
    2016
    Posts
    67

    if statement

    Can someone help me with the following please. I want to calculate the net income per annum for any income amount based on the following tax rates. $0 to $19,999 is taxed at 18%, $20,000 to $34,999 is tax at 27%, $35,000 to $59,000 is taxed at 35% and $60,000+ is tax at 40%.
    Last edited by whitepaw; 04-19-2009 at 01:30 AM.

  2. #2
    Forum Expert Paul's Avatar
    Join Date
    02-05-2007
    Location
    Wisconsin
    MS-Off Ver
    2016/365
    Posts
    6,885

    Re: if help please

    Hello Whitepaw,

    You don't need an IF formula here; a LOOKUP formula should do the trick though. Assuming net income per annum is calculated as:

    GROSS INCOME * (1 - TAXRATE) then try:

    =A1*(1-LOOKUP(A1,{0,20000,35000,60000},{0.18,0.27,0.35,0.4}))

    Where A1 holds the gross income. Hope that helps!

  3. #3
    Registered User
    Join Date
    08-19-2008
    Location
    Auckland, NZ
    MS-Off Ver
    2016
    Posts
    67

    Re: if statement

    Hi, thanks for this answer - it is close but not quite correct. The income is taxed progressively, thus someone earning $70,000 is taxed 18% on the first $20,000, 27% on the next $15,000, 35% on the next $25,000 & 40% on the last $10,000.

    Finally I would like to also be able to diveide the annual net figure by 12 to show monthly net. Hope this is not too difficult. Cheers

  4. #4
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: if statement

    You can use a SUMPRODUCT

    =SUMPRODUCT(--(A1>{0,20000,35000,60000}),A1-{0,20000,35000,60000},{0.18,0.09,0.08,0.05})

    Where A1 = Income value

    Note the Tax % bands are incrementally increased (ie rate 2 is 9% higher than rate 1)
    Last edited by DonkeyOte; 04-15-2009 at 08:50 AM. Reason: typo in first 35000 (was 350000)

  5. #5
    Registered User
    Join Date
    08-19-2008
    Location
    Auckland, NZ
    MS-Off Ver
    2016
    Posts
    67

    Re: if statement

    Thank you Donkeyote, your answer is great but give a negative result. I have tried to amend to get a positive result but can't seem to. My formula is as follows:

    =SUMPRODUCT(-(A1>{0,38000,60000}),A1-{0,38000,60000},{0.805,-0.135,-0.06}/12)

    This is a little different from my original info however correct for my own purposes and also gives the monthly net income figure after tax deducted at correct rates here in NZ. Cheers for your help so far. Whitepaw

  6. #6
    Registered User
    Join Date
    08-19-2008
    Location
    Auckland, NZ
    MS-Off Ver
    2016
    Posts
    67

    Smile Re: if statement

    Please ignore my last post - I have figured it out. I adjusted the tax rates from positive to negative and vice versa. Thanks again for your help - this forum is great as I have been trying to deal with this issue for years.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1