Cell formatting

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

Guest

Is there a way that when I enter a date in one cell I can have something
automatically put into another cell. The automatic entery will always be the
same. I am using Excel 2002
 
You could use a formula that will retrieve the value from that cell:

=a1
or
='Sheet 999'!a1

Or

=if(a1="","",a1)
=if('Sheet 999'!a1="","",'Sheet 999'!a1)

to keep the formula from returning a 0 when the cell is empty.
 

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

Back
Top