![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: Feb 2002
Posts: 19
|
Hello Everyone,
Is there a way to get excel to apply an auto time stamp to a spreadsheet. I've tried to get users to type in the formula =NOW(), but that doesn't work because when you reopen the file the formula changes the time and date to the current status. I need a time stamp or macro to use for when users are making calls out to employees for overtime. I need to record the exact time the call was made. Please help...thanks |
|
|
|
|
|
#2 |
|
Board Regular
Join Date: Feb 2002
Posts: 7,743
|
CTRL + SHIFT + :
Another way, which could be cumbersome is to type =now() into any cell and name it. Highlight the cells into which the user inputs the date/time stamp, go to Data/validation/List/Source [ This Message was edited by: brian from maui on 2002-05-13 10:21 ] |
|
|
|
|
|
#3 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Austin, Texas USA
Posts: 11,654
|
Control+:
|
|
|
|
|
|
#4 |
|
New Member
Join Date: Feb 2002
Posts: 19
|
Hello Brian and Mark
Thanks so much for the tip. It works fine except for one thing control ; gives me the correct date but the wrong time (my cells are formatted for date and time) and the other control + shift + : give me the wrong date but the correct time. What am I doing wrong? |
|
|
|
|
|
#5 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: Austin, Texas USA
Posts: 11,654
|
Quote:
Control+: (colon) If you need a date/time stamp then do the following... 1. Control+; (semicolon) 2. Press the space bar 3. Control+: (colon) 4. Enter [ This Message was edited by: Mark W. on 2002-05-13 11:18 ] |
|
|
|
|
|
|
#6 |
|
New Member
Join Date: Feb 2002
Posts: 19
|
Thanks my Time Stamping problem is solved. Mark, thanks so much. I love this site.
|
|
|
|
|
|
#7 |
|
New Member
Join Date: Aug 2005
Location: Minnesota
Posts: 15
|
The Ctrl Shift : + Ctrl Shift ; will give me a date and time... is there a way to automate this to be a macro? \
Thanks in advance for your help. |
|
|
|
|
|
#8 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Helena, MT
Posts: 13,690
|
Or you could use a Double_Click
Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) If Target.Column <> 4 Then Exit Sub Target.Value = Now Cancel = True End Sub
__________________
If you have to tell your boss you're good with Excel, you're NOT!! All I know about Excel I owe to my ignorance! Scotch: Because you don't solve great Excel problems over white wine |
|
|
|
|
|
#9 |
|
New Member
Join Date: Jul 2006
Location: Wisconsin
Posts: 16
|
I am uncertain about the cntrl + as when I hit those keys I get an window to shift cells.
How do I correct for this to realize a date/time stamp in a cell? Thank you. |
|
|
|
|
|
#10 |
|
Board Regular
Join Date: Jun 2003
Location: Olympia
Posts: 7,942
|
You do NOT use the "+" key.
Follow these steps: 1. Control; (semicolon) 2. Press the space bar 3. Control: (colon) 4. Enter
__________________
John |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|