+ Reply to Thread
Results 1 to 4 of 4

Need help in a formula that calculates the local income tax

  1. #1
    Registered User
    Join Date
    08-22-2012
    Location
    Jordan
    MS-Off Ver
    Excel 2007
    Posts
    3

    Need help in a formula that calculates the local income tax

    Hello,

    I have a small office and i need help writing a formula that would help me calculating the income tax of the employees salaries.
    The income tax is 0% if your monthly salary is between 0-1000
    The income tax is 7% if your monthly salary is between 1000-2000
    The income tax is 14% if your monthly salary is over 2000

    As an example : if someone's salary is 1400 , the first 1000 has 0% tax , but the 400 has 7%
    another one , if someone's salary is 2100 , the first 1000 has 0% tax , 7% for 1000 , and 14% for 100

    I wish that anyone can help me to write a formula to solve this !!

    Thank you so so much guys

    Best Regards,
    Mughrabi

  2. #2
    Registered User
    Join Date
    08-22-2012
    Location
    Jordan
    MS-Off Ver
    Excel 2007
    Posts
    3

    Re: Need help in a formula that calculates the local income tax

    I am using Excel 2007

  3. #3
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Need help in a formula that calculates the local income tax

    Hi

    Try

    =IF(AND(A1>1000,A1<=2000),((A1-1000)*7%),IF(A1>2000,((2000-1000)*7%)+((A1-2000)*14%),0))
    Regards

    Fotis.

    -This is my Greek whisper to Europe.

    --Remember, saying thanks only takes a second or two. Click the little star * below, to give some Rep if you think an answer deserves it.

    Advanced Excel Techniques: http://excelxor.com/

    --KISS(Keep it simple Stupid)

    --Bring them back.

    ---See about Acropolis of Athens.

    --Visit Greece.

  4. #4
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: Need help in a formula that calculates the local income tax

    How about

    =MAX(0,A2-2000)*0.14+MAX(0,MIN(A2,2000)-1000)*0.07

+ 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