Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Less than or equal to

I have to calculate markups on a net amount of cost so that the first markup
will be 10% for the first $10,000. Than the next box will be a markup of 5%
for net amount between $10,000 and $90,000 and the third box will be 1%
markup for amounts over $90,000. So for example, if the total net cost in
box D5 is $120,000
D6 would equal $1,000 (that's 10% of the first $10,000)
D7 would equal $4000 (that's 5% of 90,000-10,000)
D8 would equal $ 300 That's 1% of $120,000-90,000

Keep in mind that many time mthe total net could be under $10,000 or
somewheres below 90K or 120K.

Thanks


--
Beginner user
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Less than or equal to

I think this does what you want...

D6: =0.1*MIN(D5,10000)
D7: =0.05*MAX(0,MIN(80000,D5-10000))
D8: =0.01*MAX(0,D5-90000)

Rick


"Alan K." wrote in message
...
I have to calculate markups on a net amount of cost so that the first
markup
will be 10% for the first $10,000. Than the next box will be a markup of
5%
for net amount between $10,000 and $90,000 and the third box will be 1%
markup for amounts over $90,000. So for example, if the total net cost in
box D5 is $120,000
D6 would equal $1,000 (that's 10% of the first $10,000)
D7 would equal $4000 (that's 5% of 90,000-10,000)
D8 would equal $ 300 That's 1% of $120,000-90,000

Keep in mind that many time mthe total net could be under $10,000 or
somewheres below 90K or 120K.

Thanks


--
Beginner user


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default Less than or equal to

D6:=MIN(10000,D5)*10%
D7: =MIN(80000,MAX(0,D5-10000))*5%
D8: =MAX(0,D5-90000)*1%

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Alan K." wrote in message
...
I have to calculate markups on a net amount of cost so that the first
markup
will be 10% for the first $10,000. Than the next box will be a markup of
5%
for net amount between $10,000 and $90,000 and the third box will be 1%
markup for amounts over $90,000. So for example, if the total net cost in
box D5 is $120,000
D6 would equal $1,000 (that's 10% of the first $10,000)
D7 would equal $4000 (that's 5% of 90,000-10,000)
D8 would equal $ 300 That's 1% of $120,000-90,000

Keep in mind that many time mthe total net could be under $10,000 or
somewheres below 90K or 120K.

Thanks


--
Beginner user



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
can I make cell "yes" equal 1, "no" equal 0 can I make cell yes equal 1, no equa Excel Discussion (Misc queries) 4 April 22nd 23 06:09 AM
IF - not equal to j.jansson[_2_] Excel Worksheet Functions 4 September 4th 07 05:11 PM
#ref to equal zero cherrynich Excel Worksheet Functions 2 February 6th 06 09:31 PM
Between or Equal to Coltsfan Excel Discussion (Misc queries) 2 July 29th 05 12:01 AM
not equal to zero ellebelle Excel Worksheet Functions 3 June 23rd 05 12:35 PM


All times are GMT +1. The time now is 03:34 PM.

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

About Us

"It's about Microsoft Excel"