PC Review


Reply
Thread Tools Rate Thread

Date Stamp at a tap

 
 
s6guy1
Guest
Posts: n/a
 
      7th Dec 2005

I don't know if Excel has this functionality. What I am trying to do is
to have Excel place a time stamp as part of a log. This is to be
transfereable to my palm TREO through "Doc's To Go". Data entry on a
Palm can be tough at times.
I'd just like to tap the cell and get the current time stamp. and not
to have it update or change. This is to be just a log date and time.
There could be upwards of 150 of these on a sheet, all different.
I've tried =now(). This really just gives me a date and time and will
change with my computers clock.
Hope some of you Guru's can help.

Thanks


--
s6guy1
------------------------------------------------------------------------
s6guy1's Profile: http://www.excelforum.com/member.php...o&userid=29441
View this thread: http://www.excelforum.com/showthread...hreadid=491485

 
Reply With Quote
 
 
 
 
Bob Phillips
Guest
Posts: n/a
 
      7th Dec 2005
Ctrl-; does that for you.

Or you could try event code

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
Target.Value = Format(Date, "dd mmm yyyy")
Target.Offset(0, 1).Select
End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.


--

HTH

RP
(remove nothere from the email address if mailing direct)


"s6guy1" <(E-Mail Removed)> wrote in
message news:(E-Mail Removed)...
>
> I don't know if Excel has this functionality. What I am trying to do is
> to have Excel place a time stamp as part of a log. This is to be
> transfereable to my palm TREO through "Doc's To Go". Data entry on a
> Palm can be tough at times.
> I'd just like to tap the cell and get the current time stamp. and not
> to have it update or change. This is to be just a log date and time.
> There could be upwards of 150 of these on a sheet, all different.
> I've tried =now(). This really just gives me a date and time and will
> change with my computers clock.
> Hope some of you Guru's can help.
>
> Thanks
>
>
> --
> s6guy1
> ------------------------------------------------------------------------
> s6guy1's Profile:

http://www.excelforum.com/member.php...o&userid=29441
> View this thread: http://www.excelforum.com/showthread...hreadid=491485
>



 
Reply With Quote
 
JE McGimpsey
Guest
Posts: n/a
 
      7th Dec 2005
If you want to automate XL to add the time stamp whenever your data is
entered, take a look here:

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

In article <(E-Mail Removed)>,
s6guy1 <(E-Mail Removed)> wrote:

> I don't know if Excel has this functionality. What I am trying to do is
> to have Excel place a time stamp as part of a log. This is to be
> transfereable to my palm TREO through "Doc's To Go". Data entry on a
> Palm can be tough at times.
> I'd just like to tap the cell and get the current time stamp. and not
> to have it update or change. This is to be just a log date and time.
> There could be upwards of 150 of these on a sheet, all different.
> I've tried =now(). This really just gives me a date and time and will
> change with my computers clock.
> Hope some of you Guru's can help.
>
> Thanks

 
Reply With Quote
 
Danny@Kendal
Guest
Posts: n/a
 
      7th Dec 2005
"s6guy1" <(E-Mail Removed)> wrote in
message news:(E-Mail Removed)...
>
> I don't know if Excel has this functionality. What I am trying to do is
> to have Excel place a time stamp as part of a log. This is to be
> transfereable to my palm TREO through "Doc's To Go". Data entry on a
> Palm can be tough at times.
> I'd just like to tap the cell and get the current time stamp. and not
> to have it update or change.


CTRL ; (enters the date)
followed by
SPACE
followed by
CTRL : (enters the time)

A quick browse through the help files doesn't seem to list anything which
inserts the date AND time in one go. There should be a way to insert the
current date/time into the current cell with a macro and then assign a
keyboard shortcut to it.


 
Reply With Quote
 
Danny@Kendal
Guest
Posts: n/a
 
      7th Dec 2005
"Danny@Kendal" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> "s6guy1" <(E-Mail Removed)> wrote in
> message news:(E-Mail Removed)...
>>
>> I don't know if Excel has this functionality. What I am trying to do is
>> to have Excel place a time stamp as part of a log. This is to be
>> transfereable to my palm TREO through "Doc's To Go". Data entry on a
>> Palm can be tough at times.
>> I'd just like to tap the cell and get the current time stamp. and not
>> to have it update or change.

>
> CTRL ; (enters the date)
> followed by
> SPACE
> followed by
> CTRL : (enters the time)
>
> A quick browse through the help files doesn't seem to list anything which
> inserts the date AND time in one go. There should be a way to insert the
> current date/time into the current cell with a macro and then assign a
> keyboard shortcut to it.


Ah! Just found it.

Create the following as a macro

Sub insertDateTime()
ActiveCell.Value = Now()
End Sub

Then select it from your list of macros, choose 'options' and assign a
keyboard shortcut.

I've just tried it and it seems to work.


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Separating date from a Date & Time stamp =?Utf-8?B?SlQ=?= Microsoft Excel Misc 9 10th Jun 2008 05:55 PM
Date Created or Date Modified Record Stamp =?Utf-8?B?Um9zZQ==?= Microsoft Access 1 13th May 2007 07:24 PM
Create a button that will date stamp todays date in a cell Tom Meacham Microsoft Excel Misc 3 11th Jan 2006 01:08 AM
Date stamp spreadsheet in excel to remind me of completion date =?Utf-8?B?QmlnIGZlbGxh?= Microsoft Excel Worksheet Functions 1 18th Oct 2005 04:10 PM
date stamp Can I add a date stamp in a Text or Memo Field =?Utf-8?B?TWljaGFlbCBM?= Microsoft Access Database Table Design 10 11th Apr 2005 02:29 AM


Features
 

Advertising
 

Newsgroups
 


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