From: fs on
I'm creating a checklist in Excel 2007 and would like to know how to
add a date in an adjacent cell automatically whenever I enter a
specific # into another cell. Does any one know of a simple formula?
Would apreciate it very much.
FS.
From: Ms-Exl-Learner on
If A1 cell value is 55 then this formula will get you the Today's date.
=IF(A1=55,TODAY(),"")

If A1 cell value is NUMBER, then the below formula will get you the Today's
date.
=IF(ISNUMBER(A1),TODAY(),"")

Change the A1 cell to your desired cell.

--------------------
(Ms-Exl-Learner)
--------------------


"fs" <fredreyzar(a)gmail.com> wrote in message
news:e8967d0c-b51f-4929-8165-4113010730a4(a)k17g2000yqb.googlegroups.com...
> I'm creating a checklist in Excel 2007 and would like to know how to
> add a date in an adjacent cell automatically whenever I enter a
> specific # into another cell. Does any one know of a simple formula?
> Would apreciate it very much.
> FS.


From: Gord Dibben on
Do you want the date to then remain static for all time?

There are a couple of methods to create a static date pointed out on John
McGimpsey's site.

http://www.mcgimpsey.com/excel/timestamp.html

One uses circular references and worksheet function NOW()

Other uses VBA


Gord Dibben MS Excel MVP

On Tue, 30 Mar 2010 19:20:58 -0700 (PDT), fs <fredreyzar(a)gmail.com> wrote:

>I'm creating a checklist in Excel 2007 and would like to know how to
>add a date in an adjacent cell automatically whenever I enter a
>specific # into another cell. Does any one know of a simple formula?
>Would apreciate it very much.
>FS.