#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
skateblade
 
Posts: n/a
Default If Calculation

Calculate the first 600 units @ 5c per unit, above 600 units calculate @ 5.8c
per unit
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Toppers
 
Posts: n/a
Default If Calculation

if(a1<=600,A1*5,600*5+(a1-600)*5.8) cents

HTH

"skateblade" wrote:

Calculate the first 600 units @ 5c per unit, above 600 units calculate @ 5.8c
per unit

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
 
Posts: n/a
Default If Calculation

skateblade wrote:
Calculate the first 600 units @ 5c per unit, above 600 units
calculate @ 5.8c per unit


Can you say "please"? Oh well ....

If A1 contains the number of units:

=5*A1 + 0.8*max(0,A1-600)

Note: That formula is in units of "c". If "c" is cents and you
want the formula to be in units of dollars, use 0.05 and 0.008
instead of 5 and 0.8 respectively.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
FSt1
 
Posts: n/a
Default If Calculation

hi,
assuming that your quantity is in A1, try this...
=IF(A1600,(600*0.05)+((A1-600)*0.058),A1*0.05)
regards
FSt1

"skateblade" wrote:

Calculate the first 600 units @ 5c per unit, above 600 units calculate @ 5.8c
per unit

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Paul B
 
Posts: n/a
Default If Calculation

skateblade, Elkar gave you an answer in your other question, just change the
amounts you want to use this time,

=MIN(A1,600)*0.05+MAX(A1-600,0)*0.058

--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003

"skateblade" wrote in message
...
Calculate the first 600 units @ 5c per unit, above 600 units calculate @

5.8c
per unit





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
Stopping Calculation Kelly Excel Discussion (Misc queries) 2 March 15th 06 10:56 PM
Calculation Setting in Excel Stuart Bisset Excel Discussion (Misc queries) 0 June 17th 05 09:54 AM
How do I use a rounded calculation result in another calculation? vnsrod2000 Excel Worksheet Functions 1 January 26th 05 10:11 PM
How do I use a rounded calculation result in another calculation? vnsrod2000 Excel Worksheet Functions 1 January 26th 05 09:36 PM
time-clock calculation dokliver Excel Worksheet Functions 3 October 28th 04 09:07 PM


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