PC Review


Reply
Thread Tools Rate Thread

Calculation total not to exceed a specified number.

 
 
=?Utf-8?B?Q2Fyam9ja3k=?=
Guest
Posts: n/a
 
      14th Oct 2006
I am trying to set up 2 calculations for our sales tax.

(1) The local tax is 2.25% of the sale up to the first $1600 of the sale or
a maximum local tax of $36. If the sale is $3000 the tax is still $36. If
the sale is less than $1600 then the tax is 2.25% of that amount.

(2) There is a state tax of 7% on the total sale. There is an additional
state tax of 2.75% (single item purchase tax) on the amount of the sale
between $1600 and $3200 or a maximum of $44.

So if you have a sale of $10,000 there is a state tax of 7% on the total
($700), local tax of $36 plus a state single item purchase tax of $44.

A formula for this will be greatly appreciated!

Jim


 
Reply With Quote
 
 
 
 
Niek Otten
Guest
Posts: n/a
 
      14th Oct 2006
Hi Jim,

The total is:

=A1+MIN(A1*2.25%,36)+A1*7%+MAX(0,MIN(44,A1*2.75%))

The "+" signs separate the individual taxes
--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"Carjocky" <(E-Mail Removed)> wrote in message news:953E929E-7118-48E9-BC68-(E-Mail Removed)...
|I am trying to set up 2 calculations for our sales tax.
|
| (1) The local tax is 2.25% of the sale up to the first $1600 of the sale or
| a maximum local tax of $36. If the sale is $3000 the tax is still $36. If
| the sale is less than $1600 then the tax is 2.25% of that amount.
|
| (2) There is a state tax of 7% on the total sale. There is an additional
| state tax of 2.75% (single item purchase tax) on the amount of the sale
| between $1600 and $3200 or a maximum of $44.
|
| So if you have a sale of $10,000 there is a state tax of 7% on the total
| ($700), local tax of $36 plus a state single item purchase tax of $44.
|
| A formula for this will be greatly appreciated!
|
| Jim
|
|


 
Reply With Quote
 
=?Utf-8?B?R2FyeScncyBTdHVkZW50?=
Guest
Posts: n/a
 
      14th Oct 2006
If the sale is in A1 then:

=A1+MIN(A1*0.0225,36)+0.07*A1+IF(A1>1600,MIN(44,0.0275*A1),0)

round up or down to the nearest penny as the law requires
--
Gary's Student


"Carjocky" wrote:

> I am trying to set up 2 calculations for our sales tax.
>
> (1) The local tax is 2.25% of the sale up to the first $1600 of the sale or
> a maximum local tax of $36. If the sale is $3000 the tax is still $36. If
> the sale is less than $1600 then the tax is 2.25% of that amount.
>
> (2) There is a state tax of 7% on the total sale. There is an additional
> state tax of 2.75% (single item purchase tax) on the amount of the sale
> between $1600 and $3200 or a maximum of $44.
>
> So if you have a sale of $10,000 there is a state tax of 7% on the total
> ($700), local tax of $36 plus a state single item purchase tax of $44.
>
> A formula for this will be greatly appreciated!
>
> Jim
>
>

 
Reply With Quote
 
=?Utf-8?B?Q2Fyam9ja3k=?=
Guest
Posts: n/a
 
      14th Oct 2006
Thank you for the response. I need the tax amounts in to show in their own
cells and to reflect only the tax. I tried to figure out how to do that
without bothering you again but no luck. Not very good with this kind of
thing.

Jim

"Gary''s Student" wrote:

> If the sale is in A1 then:
>
> =A1+MIN(A1*0.0225,36)+0.07*A1+IF(A1>1600,MIN(44,0.0275*A1),0)
>
> round up or down to the nearest penny as the law requires
> --
> Gary's Student
>
>
> "Carjocky" wrote:
>
> > I am trying to set up 2 calculations for our sales tax.
> >
> > (1) The local tax is 2.25% of the sale up to the first $1600 of the sale or
> > a maximum local tax of $36. If the sale is $3000 the tax is still $36. If
> > the sale is less than $1600 then the tax is 2.25% of that amount.
> >
> > (2) There is a state tax of 7% on the total sale. There is an additional
> > state tax of 2.75% (single item purchase tax) on the amount of the sale
> > between $1600 and $3200 or a maximum of $44.
> >
> > So if you have a sale of $10,000 there is a state tax of 7% on the total
> > ($700), local tax of $36 plus a state single item purchase tax of $44.
> >
> > A formula for this will be greatly appreciated!
> >
> > Jim
> >
> >

 
Reply With Quote
 
Niek Otten
Guest
Posts: n/a
 
      14th Oct 2006
=MIN(A1*2.25%,36)
=A1*7%
=MAX(0,MIN(44,A1*2.75%))

That's what I meant when I wrote that the individual taxes were separated by + signs

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"Carjocky" <(E-Mail Removed)> wrote in message news:37C23859-2E4F-40A3-90D2-(E-Mail Removed)...
| Thank you for the response. I need the tax amounts in to show in their own
| cells and to reflect only the tax. I tried to figure out how to do that
| without bothering you again but no luck. Not very good with this kind of
| thing.
|
| Jim
|
| "Gary''s Student" wrote:
|
| > If the sale is in A1 then:
| >
| > =A1+MIN(A1*0.0225,36)+0.07*A1+IF(A1>1600,MIN(44,0.0275*A1),0)
| >
| > round up or down to the nearest penny as the law requires
| > --
| > Gary's Student
| >
| >
| > "Carjocky" wrote:
| >
| > > I am trying to set up 2 calculations for our sales tax.
| > >
| > > (1) The local tax is 2.25% of the sale up to the first $1600 of the sale or
| > > a maximum local tax of $36. If the sale is $3000 the tax is still $36. If
| > > the sale is less than $1600 then the tax is 2.25% of that amount.
| > >
| > > (2) There is a state tax of 7% on the total sale. There is an additional
| > > state tax of 2.75% (single item purchase tax) on the amount of the sale
| > > between $1600 and $3200 or a maximum of $44.
| > >
| > > So if you have a sale of $10,000 there is a state tax of 7% on the total
| > > ($700), local tax of $36 plus a state single item purchase tax of $44.
| > >
| > > A formula for this will be greatly appreciated!
| > >
| > > Jim
| > >
| > >


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Number of total calculation functions appsinoffice2003 Microsoft Excel Worksheet Functions 3 13th Jun 2009 08:42 PM
I want to auto-sum and not exceed a certain number jt4lsu Microsoft Excel Misc 2 12th Jan 2009 06:00 PM
Percentage total may not exceed 100 =?Utf-8?B?VGhlIEZvb2wgb24gdGhlIEhpbGw=?= Microsoft Excel Misc 5 6th Sep 2007 03:26 PM
The number of hours in a day cannot exceed 24... TheBeowulf Microsoft Excel Worksheet Functions 2 20th Sep 2005 09:09 PM
Show only sum values that exceed a certain total Trudy Microsoft Access Forms 1 4th Jul 2003 01:59 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:49 PM.