Thread: Date Macro
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Stout Stout is offline
external usenet poster
 
Posts: 9
Default Date Macro

See if this will do it...i'm no expert though

Sub datemacro()
With ActiveCell
.FormulaR1C1 = "=TODAY()"
.Copy
.PasteSpecial Paste:=xlPasteValues
End With
Application.CutCopyMode = False
End Sub

"in_trouble" wrote:

How can I enter todays date with a macro, without the date updating tomorrow?