Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Hi doing my cert 2 and i am stuck on 1 formula
i need to work out the total cost of something where the first 1000 are $0.50 and anything over 1000 is $0.40 using if function. It all seemed so straught forward till i got to this. Thanx in advance |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Try this:
=IF(COUNT(A1),MIN(A1,1000)*0.5+MAX(A1-1000,0)*0.4,0) -- Biff Microsoft Excel MVP "peter" wrote in message ... Hi doing my cert 2 and i am stuck on 1 formula i need to work out the total cost of something where the first 1000 are $0.50 and anything over 1000 is $0.40 using if function. It all seemed so straught forward till i got to this. Thanx in advance |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Thank you very much that did the trick...and thanx to everyone that
helped...a speedy response. :) "T. Valko" wrote: Try this: =IF(COUNT(A1),MIN(A1,1000)*0.5+MAX(A1-1000,0)*0.4,0) -- Biff Microsoft Excel MVP "peter" wrote in message ... Hi doing my cert 2 and i am stuck on 1 formula i need to work out the total cost of something where the first 1000 are $0.50 and anything over 1000 is $0.40 using if function. It all seemed so straught forward till i got to this. Thanx in advance |
#4
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
You're welcome!
-- Biff Microsoft Excel MVP "peter" wrote in message ... Thank you very much that did the trick...and thanx to everyone that helped...a speedy response. :) "T. Valko" wrote: Try this: =IF(COUNT(A1),MIN(A1,1000)*0.5+MAX(A1-1000,0)*0.4,0) -- Biff Microsoft Excel MVP "peter" wrote in message ... Hi doing my cert 2 and i am stuck on 1 formula i need to work out the total cost of something where the first 1000 are $0.50 and anything over 1000 is $0.40 using if function. It all seemed so straught forward till i got to this. Thanx in advance |
#5
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
One way ..
Assuming quantities in A1 down Place in B1: =IF(A1="","",IF(A1<=1000,A1*0.5,(A1-1000)*0.4+500)) Copy B1 down -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- "peter" wrote: Hi doing my cert 2 and i am stuck on 1 formula i need to work out the total cost of something where the first 1000 are $0.50 and anything over 1000 is $0.40 using if function. It all seemed so straight forward till i got to this. Thanx in advance |
#6
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Hi Peter
No need to use IF's Try =A1*0.5-MAX(0,A1-1000)*0.1 -- Regards Roger Govier "peter" wrote in message ... Hi doing my cert 2 and i am stuck on 1 formula i need to work out the total cost of something where the first 1000 are $0.50 and anything over 1000 is $0.40 using if function. It all seemed so straught forward till i got to this. Thanx in advance |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
copy of excel file not showing formulal/function in the function b | Excel Discussion (Misc queries) | |||
LINKEDRANGE function - a complement to the PULL function (for getting values from a closed workbook) | Excel Worksheet Functions | |||
Offset function with nested match function not finding host ss. | Excel Worksheet Functions | |||
Emulate Index/Match combo function w/ VBA custom function | Excel Worksheet Functions | |||
Nested IF Function, Date Comparing, and NetworkDays Function | Excel Worksheet Functions |