Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 50
Default Return nothing if cell is populated

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 364
Default Return nothing if cell is populated

"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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default Return nothing if cell is populated

=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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,624
Default Return nothing if cell is populated

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Return nothing if cell is populated

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
First populated cell in row array/ Last populated cell in row arra Skyscan Excel Worksheet Functions 7 May 29th 08 05:20 PM
can a cell be automatically populated with the workbook name? crawdood Excel Worksheet Functions 4 August 14th 07 04:42 PM
formula for a cell which is blank returns populated cell Gracey1 Excel Discussion (Misc queries) 1 February 2nd 07 09:17 AM
Index heading when cell is populated Kevin M Excel Worksheet Functions 2 September 7th 06 06:00 PM
Check to see if a cell is populated bbmerc Excel Worksheet Functions 1 August 19th 05 04:15 PM


All times are GMT +1. The time now is 09:41 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"