+ Reply to Thread
Results 1 to 8 of 8

Tax Bands

  1. #1
    Registered User
    Join Date
    04-18-2011
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    92

    Tax Bands

    tax bands

    hi what what if formulas can i use to calc taxes on different tax bands as attached

    thanks !
    Attached Files Attached Files

  2. #2
    Forum Guru AlKey's Avatar
    Join Date
    07-20-2009
    Location
    Lakeland, FL USA
    MS-Off Ver
    Microsoft Office 2010/ Office 365
    Posts
    8,903

    Re: Tax Bands

    Try this
    Enter in A4
    Formula: copy to clipboard
    Please Login or Register  to view this content.

    v A B C D
    2
    3 Income 834,000
    4 12% From To Rate
    5 - 145,000 0%
    6 145,000 250,000 2%
    7 250,000 325,000 5%
    8 325,000 750,000 10%
    9 Over 750,000 12%
    If you like my answer please click on * Add Reputation
    Don't forget to mark threads as "Solved" if your problem has been resolved

    "Nothing is so firmly believed as what we least know."
    --Michel de Montaigne

  3. #3
    Registered User
    Join Date
    04-18-2011
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    92

    Re: Tax Bands

    thanks solved

  4. #4
    Registered User
    Join Date
    04-18-2011
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    92

    Re: Tax Bands

    sorry not solved

    im trying to work out the total tax based on the tax bands . not what is the maximum tax band !

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

    Re: Tax Bands

    Quote Originally Posted by AlKey View Post
    =LOOKUP(B$3,{0,145000,250000,325000,750000},D$5:D$9)
    Quote Originally Posted by alive555 View Post
    thanks solved
    But incorrectly?

    Arguably, it is unclear what alive555 means by "calc tax on different tax bands". AlKey's formula returns the max tax rate, not the tax [sic], for 834,000.

    Usually, such tables reflect marginal rates (aka progressive rates). That is, the first 145,000 to 250,000 is taxed at 2%, the next 250,000 to 325,000 is taxed at 5%, etc.

    Alive555's table appears to be for the Scotland LBTT (Land and Buildings Transaction Tax). The calculator at https://www.savills.co.uk/resources-...alculator.aspx confirms that the total tax on 834,000 should be 58,430, to wit: 0% of the first 145,000; 2% of the next 105,000 (250,000 - 145,000); 5% of the next 75,000 (325,000 - 250,000); 10% of the next 425,000 (750,000 - 325,000); and 12% of the last 84,000 (834,000 - 750,000).

    Change the table design as follows, and enter the following formula into B2:

    =SUMPRODUCT((B3>C5:C8)*(B3-C5:C8), E6:E9)

    v A B C D E
    2 Tax 58,430
    3 Income 834,000
    4 From To Rate Diff Rate
    5 - 145,000 0% 0%
    6 145,000 250,000 2% 2%
    7 250,000 325,000 5% 3%
    8 325,000 750,000 10% 5%
    9 Over 750,000 12% 2%

    Enter the following formula into E6, formatted as Percentage with zero decimal places:

    =D6-D5

    Copy E6 into E7:E9.
    Last edited by joeu2004; 10-21-2018 at 01:05 PM. Reason: cosmetic

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

    Re: Tax Bands

    PS.... I think the following is a better table design, with the corresponding formula changes.

    Enter the following formula into B2:

    =SUMPRODUCT((B3>B5:B9)*(B3-B5:B9), E5:E9)

    v A B C D E
    2 Tax 58,430
    3 Income 834,000
    4 Over To Rate Diff Rate
    5 0 145,000 0% 0%
    6 145,000 250,000 2% 2%
    7 250,000 325,000 5% 3%
    8 325,000 750,000 10% 5%
    9 750,000 - 12% 2%

    Enter the following formulas, formatted as Percentage:

    E5: =D5
    E6: =D6-D5

    Copy E6 into E7:E9.

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

    Re: Tax Bands

    Quote Originally Posted by Sulprobil View Post
    =MAX(B3%*{0,2,2,10}-{0,2900,10400,26650})
    How can you derive this?
    Why bother? It returns the wrong answer for 834,000 in B3: 56,750 instead of 58,430.

    It returns the wrong answer for 250,001 through 324,999 as well as 750,001 or greater.

    The following is correct [2]:

    =MAX(B3*{0,2,5,10,12}%-{0,2900,10400,26650,41650})

    Also note the position of "%". Although the two positions are equivalent algebraically, I think it makes more sense to treat {0,2,5,10,12} as percentages, since they are (klunk!), rather than treat the income (B3) as a percentage (huh?!).

    It might be noted that in Excel, "%" is an operator that is shorthand for "/100" (divide by 100).

    In any case, I don't believe that formula is as flexible as the SUMPRODUCT formula [1]. It is difficult to adapt to another table of percentages and break points, IMHO. (Which is also why I suggested the minor table redesign in post #6.)


    -----
    [1] Adapted from http://www.mcgimpsey.com/excel/variablerate.html

    [2] I did not use http://www.sulprobil.com/Get_it_done...rpolation.html
    Last edited by joeu2004; 10-22-2018 at 04:55 PM. Reason: minor embellishment; footnote [2]

  8. #8
    Administrator 6StringJazzer's Avatar
    Join Date
    01-27-2010
    Location
    Tysons Corner, VA, USA
    MS-Off Ver
    MS365 Family 64-bit
    Posts
    24,721

    Re: Tax Bands

    Quote Originally Posted by Sulprobil View Post
    =MAX(B3%*{0,2,2,10}-{0,2900,10400,26650})

    How can you derive this?
    [deleted]

    Regards,
    Bernd
    It is not acceptable to use a post to drive traffic to your own web site.
    Jeff
    | | |·| |·| |·| |·| | |:| | |·| |·|
    Read the rules
    Use code tags to [code]enclose your code![/code]

+ 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. [SOLVED] Bands for weekends
    By James__S in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 11-14-2015, 08:26 AM
  2. Probability Bands
    By clattenburg cake in forum Excel General
    Replies: 1
    Last Post: 08-13-2013, 05:57 AM
  3. Create Pricing Bands
    By Char in forum Excel General
    Replies: 3
    Last Post: 06-15-2011, 12:12 PM
  4. Vlookup Bands
    By iaaw100aes in forum Excel General
    Replies: 1
    Last Post: 09-18-2009, 04:04 PM
  5. How many bands or artists can you see....
    By ratcat in forum The Water Cooler
    Replies: 20
    Last Post: 02-22-2009, 06:42 AM
  6. [SOLVED] vertical bands
    By Gordon Gradwell in forum Excel General
    Replies: 0
    Last Post: 06-02-2005, 02:05 AM
  7. Quartiles and bands
    By microsoft in forum Excel General
    Replies: 1
    Last Post: 05-05-2005, 11:06 PM

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