View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
somethinglikeant somethinglikeant is offline
external usenet poster
 
Posts: 94
Default automatically add date/time stamp to field?

If you simply want the date and time etc in the activecell

Sub StampNow()
ActiveCell.Value = Now()
ActiveCell.Copy
ActiveCell.PasteSpecial (xlPasteValues)
Calculate
CutCopyMode = False
End Sub

'somethinglikeant