Enter TODAY if cell has data

C

Cie

I would like to know how to enter a formula that will enter TODAY's DATE in
one cell if another cell has data (any kind of data but, mostly text) in it
 
D

Don Guillett

try
=IF(E5<>"",TEXT(TODAY(),"mm/dd/yy"),"")

--
Don Guillett
SalesAid Software
(e-mail address removed)
Cie said:
I would like to know how to enter a formula that will enter TODAY's DATE in
one cell if another cell has data (any kind of data but, mostly text) in
it
 
C

Cie

Thanks! That WORKED! But, you knew it would!
I'd like to ask one other question, concerning this formula. What can I
enter to exclude a single SPACE as being seen as TEXT in this formula?

Thanks again!
 
E

Engineer_Bill

The Following is a simple example of how to do this:


=IF(C1>0,NOW(),"")



The above formula will look for any info in Cell "C1" and if foun
Stamp the current Date in whatever Cell this Formula exists.


hope This helps
 
P

Peo Sjoblom

It won't stamp the date since the date will update every time the sheet is
calculated

--
Regards,

Peo Sjoblom

(No private emails please)
 

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