+ Reply to Thread
Results 1 to 5 of 5

Calulating PAYG automatically using Australian Tax Table

  1. #1
    Registered User
    Join Date
    06-19-2014
    Location
    Melbourne, Australia
    MS-Off Ver
    2010
    Posts
    1

    Angry Calulating PAYG automatically using Australian Tax Table

    Hi all,
    I need a formula to calculate Pay As You Go tax amount using an australian tax table. So If i simply enter in a gross salary, it will automatically calculate the tax amount for me.
    Can anyone advise me how to do this using the IF function?
    Taxable income Tax on this income
    0 - $18,200 Nil
    $18,201 - $37,000 19c for each $1 over $18,200
    $37,001 - $80,000 $3,572 plus 32.5c for each $1 over $37,000
    $80,001 - $180,000 $17,547 plus 37c for each $1 over $80,000
    $180,001 and over $54,547 plus 45c for each $1 over $180,000

    Thats the tax table - I'm becoming so frustrated because I just cant figure out how to calculate it!!!
    Plz help!

  2. #2
    Forum Contributor
    Join Date
    01-03-2012
    Location
    Sydney
    MS-Off Ver
    Excel 2016,Excel 2013
    Posts
    186

    Re: Calulating PAYG automatically using Australian Tax Table

    Hope this helps!
    Attached Files Attached Files
    Don't forget to rate 1 who helped u, using "Star"

  3. #3
    Forum Expert
    Join Date
    05-01-2014
    Location
    California, US
    MS-Off Ver
    Excel 2010
    Posts
    1,795

    Re: Calulating PAYG automatically using Australian Tax Table

    Quote Originally Posted by confused111 View Post
    I need a formula to calculate Pay As You Go tax amount using an australian tax table. So If i simply enter in a gross salary, it will automatically calculate the tax amount for me. Can anyone advise me how to do this using the IF function?
    Taxable income Tax on this income
    0 - $18,200 Nil
    $18,201 - $37,000 19c for each $1 over $18,200
    $37,001 - $80,000 $3,572 plus 32.5c for each $1 over $37,000
    $80,001 - $180,000 $17,547 plus 37c for each $1 over $80,000
    $180,001 and over $54,547 plus 45c for each $1 over $180,000
    Create the following table:


    A
    B
    C
    D
    E
    1
    Over....
    Rate Plus Diff_Rate

    2
    0 0.0% 0 0.0%
    3
    18,200 19.0% 0 19.0% =B3-B2
    4
    37,000 32.5%
    3,572 13.5% =B4-B3
    5
    80,000 37.0% 17,547 4.5% =B5-B4
    6
    180,000 45.0% 54,547 8.0% =B6-B5

    The formulas in column D are shown in column E.

    Then, if we enter the income in F8 (rounded down to the dollar), the PAYG can be calculated by one of the following formulas column G:

    F G H
    7 Income
    PAYG
    8 50,493
    7,957.23 =ROUND(SUMPRODUCT((F8>$A$2:$A$6)*(F8-$A$2:$A$6),$D$2:$D$6),2)
    9
    7,957.23 =ROUND((F8-VLOOKUP(F8,$A$2:$C$6,1))*VLOOKUP(F8,$A$2:$C$6,2)
    +VLOOKUP(F8,$A$2:$C$6,3),2)
    10
    7,957.23 =ROUND(IF(F8>$A$6,(F8-$A$6)*$B$6+$C$6,
    IF(F8>$A$5,(F8-$A$5)*$B$5+$C$5,
    IF(F8>$A$4,(F8-$A$4)*$B$4+$C$4,
    IF(F8>$A$3,(F8-$A$3)*$B$3,0)))),2)

    The formulas in column G are shown in column H.

    I would choose the SUMPRODUCT formula in G8. It relies on columns A, B and D (diff rate) in the table above. We do not need column C.

    Alternatively, the VLOOKUP formula in G9 mimics the exact language of the PAYG table; so you might find that easier to understand. It relies on columns A, B and C in the table above. We do not need column D.

    However, if your homework assignment requires that you use an IF formula, as you specified, use the formula in G10. It also relies only on columns A, B and C in the table above. We do not need column D.
    Last edited by joeu2004; 06-19-2014 at 08:10 AM. Reason: cosmetic

  4. #4
    Forum Expert
    Join Date
    05-01-2014
    Location
    California, US
    MS-Off Ver
    Excel 2010
    Posts
    1,795

    Re: Calulating PAYG automatically using Australian Tax Table

    Quote Originally Posted by joeu2004 View Post
    Create the following table:
    [....]
    Then, if we enter the income in F8 (rounded down to the dollar), the PAYG can be calculated by one of the following formulas column G:
    Refer to the attached Excel file.

    (Cannot add to the previous posting by editing.)
    Attached Files Attached Files

  5. #5
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: Calulating PAYG automatically using Australian Tax Table

    this should do it
    =SUMPRODUCT(--(A1>{18200;37000;80000;180000}), (A1-{18200;37000;80000;180000}), {0.19;0.135;0.045;0.08})
    explanation here
    http://www.mcgimpsey.com/excel/variablerate.html
    "Unless otherwise stated all my comments are directed at OP"

    Mojito connoisseur and now happily retired
    where does code go ?
    look here
    how to insert code

    how to enter array formula

    why use -- in sumproduct
    recommended reading
    wiki Mojito

    how to say no convincingly

    most important thing you need
    Martin Wilson: SPV
    and RSMBC

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Calulating a Ratio from Calculated Values in Pivot Table
    By marshymell0 in forum Excel Charting & Pivots
    Replies: 1
    Last Post: 03-07-2013, 01:21 PM
  2. Australian Tax Formula
    By philjthommo in forum Excel General
    Replies: 12
    Last Post: 11-30-2012, 03:13 AM
  3. Replies: 1
    Last Post: 01-20-2011, 09:40 PM
  4. Calulating TAT
    By BarryT59 in forum Excel General
    Replies: 3
    Last Post: 04-28-2009, 12:31 AM
  5. Calulating Age Formula
    By מיכאל (מיקי) אבידן in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 09-06-2005, 05:05 AM

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