Copying date from sheet1 cell to sheet2 cell

G

Guest

I enter a date in sheet1 B2. I want date to appear in sheet2 C3. I used the
formula CELL "contents" in C3. It works except when cell B2 is blank,
01/00/00 appears in C3. I want C3 to be blank also. I have both cells
formatted to Date.
 
D

Dave Peterson

You could use:
=sheet1!b2
instead of =cells("contents",sheet1!b2)

But to make the cell look empty:

=if(sheet1!b2="","",sheet1!b2)
 

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