Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi All
Let's say I have a formula in cell c1. It references a number input into cell a1, and does some math with that cell and a fixed number in cell b1. Now what I want to do is have cell c1 be blank if cell a1 is also blank. But when a number is entered into cell a1, I want the resultant formula answer to be displayed in cell c1. What do I add to my formula to do so, and where do I put it? Thanks - y'all are a big help! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Say C1 used to contain:
=A1+B1 replace with: =IF(A1="","",A1+B1) so if A1 is blank, then so will C1 -- Gary''s Student - gsnu200828 "waybomb" wrote: Hi All Let's say I have a formula in cell c1. It references a number input into cell a1, and does some math with that cell and a fixed number in cell b1. Now what I want to do is have cell c1 be blank if cell a1 is also blank. But when a number is entered into cell a1, I want the resultant formula answer to be displayed in cell c1. What do I add to my formula to do so, and where do I put it? Thanks - y'all are a big help! |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(ISBLANK(A1),"", your-formula)
For example: =IF(ISBLANK(A1),"", A1/B1+3) best wishes -- Bernard V Liengme Microsoft Excel MVP http://people.stfx.ca/bliengme remove caps from email "waybomb" wrote in message ... Hi All Let's say I have a formula in cell c1. It references a number input into cell a1, and does some math with that cell and a fixed number in cell b1. Now what I want to do is have cell c1 be blank if cell a1 is also blank. But when a number is entered into cell a1, I want the resultant formula answer to be displayed in cell c1. What do I add to my formula to do so, and where do I put it? Thanks - y'all are a big help! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
returning blank when reference cell is blank | Excel Worksheet Functions | |||
WANT TO MAKE A FORMULA RETURN A BLANK CELL (VS 0) | Excel Worksheet Functions | |||
Formula ? Return value from rightmost non-blank cell in a row of | Excel Worksheet Functions | |||
how to get excel to display blank if reference cell blank | Excel Worksheet Functions | |||
Return blank cell using a formula | New Users to Excel |