Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
J.P.
 
Posts: n/a
Default How do I create an automatic date entry?

I have entered the following formula into my spreadsheet:
=IF(F8="Complete",TODAY(),"")
The formula enters today's date when I enter the word "complete" into F8.
However, tomorrow, the formula will update to tomorrow's date. Ho can I keep
the date from changing every day after the initial entry?
Thanks,
--
J.P.
  #2   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default How do I create an automatic date entry?

You can use a shortcut key of ctrl-semicolon (ctrl-;) to enter the static time.

Or you can use a macro to plop in the date/time.

J.E. McGimpsey shows a way to put a time stamp on the same row when something
changes:

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

J.P. wrote:

I have entered the following formula into my spreadsheet:
=IF(F8="Complete",TODAY(),"")
The formula enters today's date when I enter the word "complete" into F8.
However, tomorrow, the formula will update to tomorrow's date. Ho can I keep
the date from changing every day after the initial entry?
Thanks,
--
J.P.


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default How do I create an automatic date entry?

This question is so similar to the one that I have....

how could I accomplish this..=IF(F8="Complete",TODAY(),"")

BUT with any text (not a specific word like 'Complete') and in the situation
where any change in a row (a few columns with text and a date column) will
automatically update the date.

Thanks
June


"Dave Peterson" wrote:

You can use a shortcut key of ctrl-semicolon (ctrl-;) to enter the static time.

Or you can use a macro to plop in the date/time.

J.E. McGimpsey shows a way to put a time stamp on the same row when something
changes:

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

J.P. wrote:

I have entered the following formula into my spreadsheet:
=IF(F8="Complete",TODAY(),"")
The formula enters today's date when I enter the word "complete" into F8.
However, tomorrow, the formula will update to tomorrow's date. Ho can I keep
the date from changing every day after the initial entry?
Thanks,
--
J.P.


--

Dave Peterson

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,886
Default How do I create an automatic date entry?

Hi June

Maybe
=IF(ISTEXT(F8),TODAY(),"")

--
Regards

Roger Govier


"June D" wrote in message
...
This question is so similar to the one that I have....

how could I accomplish this..=IF(F8="Complete",TODAY(),"")

BUT with any text (not a specific word like 'Complete') and in the
situation
where any change in a row (a few columns with text and a date column)
will
automatically update the date.

Thanks
June


"Dave Peterson" wrote:

You can use a shortcut key of ctrl-semicolon (ctrl-;) to enter the
static time.

Or you can use a macro to plop in the date/time.

J.E. McGimpsey shows a way to put a time stamp on the same row when
something
changes:

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

J.P. wrote:

I have entered the following formula into my spreadsheet:
=IF(F8="Complete",TODAY(),"")
The formula enters today's date when I enter the word "complete"
into F8.
However, tomorrow, the formula will update to tomorrow's date. Ho
can I keep
the date from changing every day after the initial entry?
Thanks,
--
J.P.


--

Dave Peterson



  #5   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben
 
Posts: n/a
Default How do I create an automatic date entry?

Event code.......

Option Compare Text
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
On Error GoTo enditall
Application.EnableEvents = False
If Target.Address = "$F$8" Then
If Target.Value = "Complete" Then
Excel.Range("G8").Value = Now
End If
End If
enditall:
Application.EnableEvents = True
End Sub

Right-click on the sheet tab and "View Code"

Copy/paste into that module.


Gord Dibben MS Excel MVP

On Fri, 30 Jun 2006 06:36:01 -0700, J.P. wrote:

I have entered the following formula into my spreadsheet:
=IF(F8="Complete",TODAY(),"")
The formula enters today's date when I enter the word "complete" into F8.
However, tomorrow, the formula will update to tomorrow's date. Ho can I keep
the date from changing every day after the initial entry?
Thanks,




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default How do I create an automatic date entry?

With the formula below how do i change it so it shows date and time?

"J.P." wrote:

I have entered the following formula into my spreadsheet:
=IF(F8="Complete",TODAY(),"")
The formula enters today's date when I enter the word "complete" into F8.
However, tomorrow, the formula will update to tomorrow's date. Ho can I keep
the date from changing every day after the initial entry?
Thanks,
--
J.P.

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 623
Default How do I create an automatic date entry?

Change Today() to Now(), and custom format the date/time.

--
Regards,
Fred


"pezacide" wrote in message
...
With the formula below how do i change it so it shows date and time?

"J.P." wrote:

I have entered the following formula into my spreadsheet:
=IF(F8="Complete",TODAY(),"")
The formula enters today's date when I enter the word "complete" into F8.
However, tomorrow, the formula will update to tomorrow's date. Ho can I keep
the date from changing every day after the initial entry?
Thanks,
--
J.P.



  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default How do I create an automatic date entry?

what is the custom format for the date/time format
Wednesday, 17 October 2007, 15:25

"Fred Smith" wrote:

Change Today() to Now(), and custom format the date/time.

--
Regards,
Fred


"pezacide" wrote in message
...
With the formula below how do i change it so it shows date and time?

"J.P." wrote:

I have entered the following formula into my spreadsheet:
=IF(F8="Complete",TODAY(),"")
The formula enters today's date when I enter the word "complete" into F8.
However, tomorrow, the formula will update to tomorrow's date. Ho can I keep
the date from changing every day after the initial entry?
Thanks,
--
J.P.




  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default How do I create an automatic date entry?

Try dddd, dd mmmm yyyy, hh:mm
If you look at the custom formats in the default list, you can then vary the
parameters to suit your requirements.
--
David Biddulph

"Pezacide" wrote in message
...
what is the custom format for the date/time format
Wednesday, 17 October 2007, 15:25

"Fred Smith" wrote:

Change Today() to Now(), and custom format the date/time.

--
Regards,
Fred


"pezacide" wrote in message
...
With the formula below how do i change it so it shows date and time?

"J.P." wrote:

I have entered the following formula into my spreadsheet:
=IF(F8="Complete",TODAY(),"")
The formula enters today's date when I enter the word "complete" into
F8.
However, tomorrow, the formula will update to tomorrow's date. Ho can
I keep
the date from changing every day after the initial entry?
Thanks,
--
J.P.






  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,268
Default How do I create an automatic date entry?

The format is

dddd, dd mmmm yyyy, hh:mm

but you can't make it static by formatting


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




--

Regards,

Peo Sjoblom




"Pezacide" wrote in message
...
what is the custom format for the date/time format
Wednesday, 17 October 2007, 15:25

"Fred Smith" wrote:

Change Today() to Now(), and custom format the date/time.

--
Regards,
Fred


"pezacide" wrote in message
...
With the formula below how do i change it so it shows date and time?

"J.P." wrote:

I have entered the following formula into my spreadsheet:
=IF(F8="Complete",TODAY(),"")
The formula enters today's date when I enter the word "complete" into
F8.
However, tomorrow, the formula will update to tomorrow's date. Ho can
I keep
the date from changing every day after the initial entry?
Thanks,
--
J.P.








  #11   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 623
Default How do I create an automatic date entry?

Tell us what you tried, and why it didn't do what you want. Then we're better
able to help you.

--
Regards,
Fred


"Pezacide" wrote in message
...
what is the custom format for the date/time format
Wednesday, 17 October 2007, 15:25

"Fred Smith" wrote:

Change Today() to Now(), and custom format the date/time.

--
Regards,
Fred


"pezacide" wrote in message
...
With the formula below how do i change it so it shows date and time?

"J.P." wrote:

I have entered the following formula into my spreadsheet:
=IF(F8="Complete",TODAY(),"")
The formula enters today's date when I enter the word "complete" into F8.
However, tomorrow, the formula will update to tomorrow's date. Ho can I
keep
the date from changing every day after the initial entry?
Thanks,
--
J.P.






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Turn off automatic date formatting? Nick Turner Excel Discussion (Misc queries) 3 July 13th 06 08:13 AM
Create a button that will date stamp todays date in a cell Tom Meacham Excel Discussion (Misc queries) 3 January 11th 06 01:08 AM
Automatic date Mark Renfrow Excel Discussion (Misc queries) 4 July 5th 05 10:38 PM
Automatic Date Update khaji00 Excel Discussion (Misc queries) 2 June 22nd 05 11:48 PM
Automatic Populate Todays Date in Cell when File is Saved. Nello Excel Discussion (Misc queries) 3 April 21st 05 11:08 PM


All times are GMT +1. The time now is 10:51 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"