+ Reply to Thread
Results 1 to 5 of 5

multiple sales tax rate

  1. #1
    Registered User
    Join Date
    05-24-2005
    Posts
    3

    multiple sales tax rate

    I am looking for a formula for sales tax, where the tax is based on the amount of the item sold
    example - if one item sells for $5000, the first $1600 of the item is taxed at 6.25%, the amount between $1600 & $3200 is taxed at 2.75% and the amount over $3200 is taxed at 1%
    Thanks

  2. #2
    Forum Expert
    Join Date
    06-18-2004
    Location
    Canada
    MS-Off Ver
    Office 2016
    Posts
    1,474
    Try...

    =SUMPRODUCT(--(A1>{0,1600,3200}),A1-{0,1600,3200},{0.0625,-0.035,-0.0175})

    Hope this helps!

  3. #3
    Registered User
    Join Date
    05-24-2005
    Posts
    3

    thanks for help

    Thanks, that worked. It took a couple of minutes to figure out what -0.035,-0.0175 were.
    Can I substitute a cell references instead of dollar amounts? i.e. B1 instead of $1600 ?
    Also what if the tax rate over $3200 is 0%
    Thanks again

  4. #4
    Forum Expert
    Join Date
    06-18-2004
    Location
    Canada
    MS-Off Ver
    Office 2016
    Posts
    1,474
    Quote Originally Posted by Nemo
    Can I substitute a cell references instead of dollar amounts? i.e. B1 instead of $1600 ?
    =SUMPRODUCT(--(A1>B1:B3),A1-B1:B3,{0.0625;-0.035;-0.0175})

    ...where B1 contains 0, B2 contains 1600, and B3 contains 3200.

    Also what if the tax rate over $3200 is 0%
    Thanks again
    =SUMPRODUCT(--(A1>B1:B3),A1-B1:B3,{0.0625;-0.035;-0.0275})

    Also, you may want to have a look at the following link...

    http://www.mcgimpsey.com/excel/variablerate.html

    Hope this helps!

  5. #5
    Registered User
    Join Date
    05-24-2005
    Posts
    3
    Got it, the link was really helpfull. The explaination of the how to make a table was just what I needed as I have way too many tax rates to change the formulas each time.
    Super Thanks

+ 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