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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top