Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am looking for a formula that will examine cells a cell and return nothing
if another cell is populated with anything. Any ideas? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
"whatzzup" wrote in message
... I am looking for a formula that will examine cells a cell and return nothing if another cell is populated with anything. Any ideas? The obvious question is: what should it return if the other cell is not populated? You probably want something along these lines: =IF(A1="",xxxxxxxx,"") where xxxxxxxx is what you want if the other cell is not populated. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(A1="","X","")
-- Gary''s Student - gsnu200752 "whatzzup" wrote: I am looking for a formula that will examine cells a cell and return nothing if another cell is populated with anything. Any ideas? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
A formula cannot return nothing. However, it can return a null string,
e.g.: =IF(ISBLANK(A1), "Cell A1 is not populated", "") In article , whatzzup wrote: I am looking for a formula that will examine cells a cell and return nothing if another cell is populated with anything. Any ideas? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can return an empty string, but you can't return nothing (leave the cell
empty): =if(a1<"","",a1) or =if(a1<"","","it's empty") whatzzup wrote: I am looking for a formula that will examine cells a cell and return nothing if another cell is populated with anything. Any ideas? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
First populated cell in row array/ Last populated cell in row arra | Excel Worksheet Functions | |||
can a cell be automatically populated with the workbook name? | Excel Worksheet Functions | |||
formula for a cell which is blank returns populated cell | Excel Discussion (Misc queries) | |||
Index heading when cell is populated | Excel Worksheet Functions | |||
Check to see if a cell is populated | Excel Worksheet Functions |