How do I reference an empty cell in a formula?

S

srosebed

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.
 
V

Vasant Nanavati

=IF(C2="",C1,C2)

if I understand you correctly.
___________________________________________________________________________
 
S

srosebed

Thanks! for another approach.

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

if I understand you correctly.
___________________________________________________________________________
 
R

remove dupplicate entry

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.
 
R

remove dupplicate entry

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

if I understand you correctly.
___________________________________________________________________________
 
Top