How do I reference an empty cell in a formula?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Trying to write an IF statement to return one value if the cell is empty and
another if not. For example, if the cell is empty, return the value above,
if not empty, return the value itself.
 
=IF(C2="",C1,C2)

if I understand you correctly.
___________________________________________________________________________
 
Thanks! for another approach.

Vasant Nanavati said:
=IF(C2="",C1,C2)

if I understand you correctly.
___________________________________________________________________________
 
srosebed said:
Trying to write an IF statement to return one value if the cell is empty and
another if not. For example, if the cell is empty, return the value above,
if not empty, return the value itself.
 
Vasant Nanavati said:
=IF(C2="",C1,C2)

if I understand you correctly.
___________________________________________________________________________
 
Back
Top