View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Shane Devenshire Shane Devenshire is offline
external usenet poster
 
Posts: 857
Default Return value of non-blank cell

Hi,

You didn't tell us where you wanted to return the value to or what you
wanted to do if it is blank.

Standard way:

=IF(G1="",F1,"")

But if the entries in G1 are numbers or blank, no 0's or text then a short
formula would be:

=IF(G1,"",F1)

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"Teri" wrote:

I have two columns, let's call them F and G. If a certain cell in column G
is blank, I need to return the value of column F. Any ideas? I have a
spreadsheet that is 13,000 rows. Thanks!