Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This has go to be easy but I can seem to find any help on it.
I have a value in cell A, a blank in cell B (to be filled later with a less than or equal to value of cell A), and a subtraction formula of cell B from cell A in cell C. I would like the cell C to show nothing until a value is put in cell B. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(B1="","",A1-B1)
-- David Biddulph "Todd Fleming" wrote in message ... This has go to be easy but I can seem to find any help on it. I have a value in cell A, a blank in cell B (to be filled later with a less than or equal to value of cell A), and a subtraction formula of cell B from cell A in cell C. I would like the cell C to show nothing until a value is put in cell B. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One way...
=IF(COUNT(A1:B1)<2,"",B1-A1) -- Biff Microsoft Excel MVP "Todd Fleming" wrote in message ... This has go to be easy but I can seem to find any help on it. I have a value in cell A, a blank in cell B (to be filled later with a less than or equal to value of cell A), and a subtraction formula of cell B from cell A in cell C. I would like the cell C to show nothing until a value is put in cell B. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Sep 18, 2:13*pm, Todd Fleming wrote:
This has go to be easy but I can seem to find any help on it. I have a value in cell A, a blank in cell B (to be filled later with a less than or equal to value of cell A), and a subtraction formula of cell B from cell A in cell C. I would like the cell C to show nothing until a value is put in cell B. I believe this is what you are looking for. =IF(ISBLANK(B1),"",B1-A1) |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Sep 18, 2:20*pm, MSJ wrote:
On Sep 18, 2:13*pm, Todd Fleming wrote: This has go to be easy but I can seem to find any help on it. I have a value in cell A, a blank in cell B (to be filled later with a less than or equal to value of cell A), and a subtraction formula of cell B from cell A in cell C. I would like the cell C to show nothing until a value is put in cell B. I believe this is what you are looking for. =IF(ISBLANK(B1),"",B1-A1) Ahh. I knew there were probably more than one answer. Thank you. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Code to copy the formulae of one cell to all the cell in the rangewith the specific cell and columnnumber changing Options | Excel Discussion (Misc queries) | |||
Code to copy the formulae of one cell to all the cell in the rangewith the specific cell and columnnumber changing | Excel Discussion (Misc queries) | |||
Populate a cell if values in cell 1 and cell 2 match cell 3 and 4 | Excel Worksheet Functions | |||
How can I copy a value from a cell and paste it into another cell while adding it to the previous value in that cell | Excel Worksheet Functions | |||
How to create/run "cell A equals Cell B put Cell C info in Cell D | Excel Discussion (Misc queries) |