Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Tracking change time/date

I have a spreadsheet with a validated list. I am trying to find a way to
make excel enter the time/date that a user selects an option from the list.
I need the time/date to be automatically entered into a cell next to the cell
with the list. Is this possible?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,939
Default Tracking change time/date

It can be done with a macro but nothing inherant in XL will do that for
you... Did you wnat the Code to do this???

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 1 Then Target.Offset(0, 1).Value = Now()
End Sub

To add this code right click the sheet tab where you wnat the time stamps
and select view code. Past the above code and change the Target.Column = 1 to
the numb of the column where the user will be making the change...
--
HTH...

Jim Thomlinson


"nkidd" wrote:

I have a spreadsheet with a validated list. I am trying to find a way to
make excel enter the time/date that a user selects an option from the list.
I need the time/date to be automatically entered into a cell next to the cell
with the list. Is this possible?

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
Problem calculating percent change Patrick Excel Worksheet Functions 9 October 18th 06 02:37 AM
Excel change tracking. Need to reverse a rejected change mcw Excel Discussion (Misc queries) 0 October 11th 06 07:53 PM
Tracking Change in Excel working girl Excel Discussion (Misc queries) 1 May 2nd 06 05:37 PM
Find function alamo Excel Worksheet Functions 1 September 16th 05 02:01 PM
Find function alamo Excel Worksheet Functions 1 September 16th 05 12:47 PM


All times are GMT +1. The time now is 05:13 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"