Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Calculate the first 600 units @ 5c per unit, above 600 units calculate @ 5.8c
per unit |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Stopping Calculation | Excel Discussion (Misc queries) | |||
Calculation Setting in Excel | Excel Discussion (Misc queries) | |||
How do I use a rounded calculation result in another calculation? | Excel Worksheet Functions | |||
How do I use a rounded calculation result in another calculation? | Excel Worksheet Functions | |||
time-clock calculation | Excel Worksheet Functions |