Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi
I was wondering whether you can help with a problem I have, for example IF cell A4 totals 9 how can I write a formula in cell B4 to to say A4 6 and put the remaining total into B4 ie 3. hope this makes sense. That was random numbers, but what I need to do is anything more than the number I specify I want the remaining total to show in cell B4 Regards -- Mel |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
B4: =IF(A46,A4-6,"")
-- John C "Mel" wrote: Hi I was wondering whether you can help with a problem I have, for example IF cell A4 totals 9 how can I write a formula in cell B4 to to say A4 6 and put the remaining total into B4 ie 3. hope this makes sense. That was random numbers, but what I need to do is anything more than the number I specify I want the remaining total to show in cell B4 Regards -- Mel |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You haven't said what should happen if A4<6. So, maybe something like this:
=MAX(0,A4-6) If A4<=6 the formula returns 0. -- Biff Microsoft Excel MVP "Mel" wrote in message ... Hi I was wondering whether you can help with a problem I have, for example IF cell A4 totals 9 how can I write a formula in cell B4 to to say A4 6 and put the remaining total into B4 ie 3. hope this makes sense. That was random numbers, but what I need to do is anything more than the number I specify I want the remaining total to show in cell B4 Regards -- Mel |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Greater than Less than formula | Excel Discussion (Misc queries) | |||
Greater than but less than formula | Excel Worksheet Functions | |||
Greater than formula | Excel Worksheet Functions | |||
Greater than Less than formula | Excel Discussion (Misc queries) | |||
Greater than formula | Excel Worksheet Functions |