#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Calculate sales tax

Our local sales tax is 7% on the first $5,000 then 6% for evertthing over
$5,000. What formula would I use?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 561
Default Calculate sales tax

Try this: =MIN(A1,5000)*7%+(A1-5000)*6%
Micky


"JeffB" wrote:

Our local sales tax is 7% on the first $5,000 then 6% for evertthing over
$5,000. What formula would I use?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Calculate sales tax

Not quite. For a sale of $1000, that formula computes a tax of -170!.
Correct formula:
=Min(A1,$C$1)*7% + IF(A1$C$1,(A1-$C$1)*6%,0)
where C1 contains the change-of-rate threshold (5000 in your example).
Putting the threshold in a cell makes it much easier to change the
calculation when the threshold changes (as it surely will someday).
-TedMi

"????? (????) ?????" <micky-a*at*tapuz.co.il wrote in message
...
Try this: =MIN(A1,5000)*7%+(A1-5000)*6%
Micky


"JeffB" wrote:

Our local sales tax is 7% on the first $5,000 then 6% for evertthing over
$5,000. What formula would I use?



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 905
Default Calculate sales tax

"JeffB" wrote:
Our local sales tax is 7% on the first $5,000
then 6% for evertthing over $5,000. What
formula would I use?


=MIN(A1*7%, 5000*7%+(A1-5000)*6%)

You could write 350 instead of 5000*7%.
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
calculate sales run rate LoriM Excel Discussion (Misc queries) 2 May 4th 23 07:47 PM
Calculate Sales Amount lucrezia Excel Discussion (Misc queries) 3 October 6th 06 08:22 PM
Calculate sales in the week by day ? Vass Excel Worksheet Functions 6 March 8th 06 04:50 PM
formula to calculate sales tax from total sales Deanna Excel Worksheet Functions 7 October 5th 05 08:57 PM
calculate predicted sales value Vincci Excel Worksheet Functions 0 June 1st 05 09:34 AM


All times are GMT +1. The time now is 06:23 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright 2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"