Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Current date and time for different log entries

I have created a log that my employees are using to input data every hour or
so and instead of having them input date and time, I would like to have excel
do it automatically. I understand how the NOW() and TODAY() functions work.
However, with either of those functions, they automatically update everytime
an entry is made. Once the date and time in formulated, it needs to stay at
that date and time. I've been trying to figure this out for two weeks now.
If anyone has a suggestion, please let me know. Thanks.
  #3   Report Post  
Posted to microsoft.public.excel.misc
CLR CLR is offline
external usenet poster
 
Posts: 1,998
Default Current date and time for different log entries

That would take VBA code. If that is what you are after, post back with
specifics about your sheet layout and someone will help.

Vaya con Dios,
Chuck, CABGx3



"SBO Refiner" wrote:

I have created a log that my employees are using to input data every hour or
so and instead of having them input date and time, I would like to have excel
do it automatically. I understand how the NOW() and TODAY() functions work.
However, with either of those functions, they automatically update everytime
an entry is made. Once the date and time in formulated, it needs to stay at
that date and time. I've been trying to figure this out for two weeks now.
If anyone has a suggestion, please let me know. Thanks.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 772
Default Current date and time for different log entries

This can be done through code, here is a quick example:
If ActiveCell.Column = 1 Then
ActiveCell.Offset(0, 1) = Now()
End If

just put that in the type of event you want and you are good to go. I like
before double-click but use what you want.
--
-John
Please rate when your question is answered to help us and others know what
is helpful.


"SBO Refiner" wrote:

I have created a log that my employees are using to input data every hour or
so and instead of having them input date and time, I would like to have excel
do it automatically. I understand how the NOW() and TODAY() functions work.
However, with either of those functions, they automatically update everytime
an entry is made. Once the date and time in formulated, it needs to stay at
that date and time. I've been trying to figure this out for two weeks now.
If anyone has a suggestion, please let me know. Thanks.

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
Current date and time when different cell = X Workaholic Excel Worksheet Functions 3 August 13th 06 12:49 AM
current Date and time in cell Alex01 Excel Discussion (Misc queries) 3 February 24th 06 09:22 PM
How do I sum within a set time frame from the current date? Skydiver Driver Excel Worksheet Functions 3 November 10th 05 03:43 AM
Save as Current Date / Time Jacob_F_Roecker Excel Discussion (Misc queries) 1 October 25th 05 09:37 AM
Can I automatically enter the current date or current time into a Ben New Users to Excel 7 October 19th 05 03:38 PM


All times are GMT +1. The time now is 12:29 AM.

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

About Us

"It's about Microsoft Excel"