View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
[email protected] sbitaxi@gmail.com is offline
external usenet poster
 
Posts: 158
Default Single hotkey to do a date time stamp into a cell... and thentype

On Sep 18, 1:35*pm, Gary''s Student
wrote:
Sub dergf()
ActiveCell.Value = Now
End Sub

and assign a shortcut key like CNTRL-e to it.
--
Gary''s Student - gsnu200805


I think he wants the current date/time and his initials in the cell

Sub dergf()
ActiveCell.Value = Now & " Your Initials Here"
End Sub