Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
DG
 
Posts: n/a
Default I am trying to figure out how to add per 1000

It starts out at a flat fee of $316.25 for everything from 0 to $55,000.00,
and then adds $5.75 per $1,000.00 up to a maximum of $100,000 and then
anything over $100,000 the rate drops to $5.00 per $1,000 up to 1 million.

What I am attempting to do is place a number like $250,000 in a box and have
excel do the equation and automatically place $1,325.00 in another box.


  #2   Report Post  
Govind
 
Posts: n/a
Default

Hi,

If your number of $250,000 is placed in cell A1, paste this formula in
cell B1

=IF(A1<55000,316.25,IF(A1<100000,316.25+(5.75*(ROU ND(A1-55000,-3)/1000)),(316.25+5.75*((100000-55000)/1000)+5*(ROUND(A1-100000,-3)/1000))))

Note that the formula rounds off the variance to nearest thousand.

Regards

Govind.

DG wrote:
It starts out at a flat fee of $316.25 for everything from 0 to $55,000.00,
and then adds $5.75 per $1,000.00 up to a maximum of $100,000 and then
anything over $100,000 the rate drops to $5.00 per $1,000 up to 1 million.

What I am attempting to do is place a number like $250,000 in a box and have
excel do the equation and automatically place $1,325.00 in another box.


  #3   Report Post  
DG
 
Posts: n/a
Default

You are a life saver!!!!!
Thanks!

"Govind" wrote:

Hi,

If your number of $250,000 is placed in cell A1, paste this formula in
cell B1

=IF(A1<55000,316.25,IF(A1<100000,316.25+(5.75*(ROU ND(A1-55000,-3)/1000)),(316.25+5.75*((100000-55000)/1000)+5*(ROUND(A1-100000,-3)/1000))))

Note that the formula rounds off the variance to nearest thousand.

Regards

Govind.

DG wrote:
It starts out at a flat fee of $316.25 for everything from 0 to $55,000.00,
and then adds $5.75 per $1,000.00 up to a maximum of $100,000 and then
anything over $100,000 the rate drops to $5.00 per $1,000 up to 1 million.

What I am attempting to do is place a number like $250,000 in a box and have
excel do the equation and automatically place $1,325.00 in another box.



  #4   Report Post  
Dana DeLouis
 
Posts: n/a
Default

What I am attempting to do is place a number like $250,000 in a box and
have
excel do the equation and automatically place $1,325.00 in another box.


Hi. If you do not wish to RoundUp your value per $1,000 as in your example,
another option might be:

=MAX(316.25,MIN(75+A1/200,(23*A1)/4000))

Returns $1325 also.
HTH :)
--
Dana DeLouis
Win XP & Office 2003


"DG" wrote in message
...
You are a life saver!!!!!
Thanks!

"Govind" wrote:

Hi,

If your number of $250,000 is placed in cell A1, paste this formula in
cell B1

=IF(A1<55000,316.25,IF(A1<100000,316.25+(5.75*(ROU ND(A1-55000,-3)/1000)),(316.25+5.75*((100000-55000)/1000)+5*(ROUND(A1-100000,-3)/1000))))

Note that the formula rounds off the variance to nearest thousand.

Regards

Govind.

DG wrote:
It starts out at a flat fee of $316.25 for everything from 0 to
$55,000.00,
and then adds $5.75 per $1,000.00 up to a maximum of $100,000 and then
anything over $100,000 the rate drops to $5.00 per $1,000 up to 1
million.

What I am attempting to do is place a number like $250,000 in a box and
have
excel do the equation and automatically place $1,325.00 in another box.





  #5   Report Post  
 
Posts: n/a
Default

A different approach
=SUM(--(A10)*316.25,--(A155000)*(INT(A1/1000-55)*5.75),--(A1100000)*(INT(A1/1000-100)*-0.75))

personal preference as to which you choose. This would be neater if you
wish to increase the number of price brackets.
hth RES

It starts out at a flat fee of $316.25 for everything from 0 to

$55,000.00,
and then adds $5.75 per $1,000.00 up to a maximum of $100,000 and then
anything over $100,000 the rate drops to $5.00 per $1,000 up to 1

million.

What I am attempting to do is place a number like $250,000 in a box and

have
excel do the equation and automatically place $1,325.00 in another box.



  #6   Report Post  
Ashish Mathur
 
Posts: n/a
Default

Hi,

i worked on a similar problem some time back. May be this helps. The
datain the table is something like this (Range B2:D8):

Income slab Rate

- 0%
50,000.00 10%
150,000.00 20%
320,000.00 30%
600,000.00 40%

The total taxable income i sentered in cell D10.

In cell C12, array enter the following formula (Ctrl+Shift+Enter)

=SUM(IF($D$10<B4:B8,0,IF(B5:B9-B4:B8$D$10,$D$10-B4:B8,IF(B5:B9-B4:B80,IF(B5:B9-B4:B8$D$10-B4:B8,$D$10-B4:B8,B5:B9-B4:B8),$D$10-B4:B8)))*(C4:C8))

Regards,

Ashish Mathur


"DG" wrote:

It starts out at a flat fee of $316.25 for everything from 0 to $55,000.00,
and then adds $5.75 per $1,000.00 up to a maximum of $100,000 and then
anything over $100,000 the rate drops to $5.00 per $1,000 up to 1 million.

What I am attempting to do is place a number like $250,000 in a box and have
excel do the equation and automatically place $1,325.00 in another box.


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
minimum a fixed figure when it is lower weepel New Users to Excel 5 June 22nd 05 06:46 PM
How can I make a timesheet to figure my hours and payrate? Bruce Excel Worksheet Functions 2 March 25th 05 01:10 AM
how to type a minues figure jenniss New Users to Excel 1 February 8th 05 03:05 PM
Function Help Steven M. Britton Excel Worksheet Functions 0 December 9th 04 03:33 PM
Amortization Schedule Steven M. Britton Excel Worksheet Functions 0 December 8th 04 04:23 AM


All times are GMT +1. The time now is 02:12 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"