Thread: Macros
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
JE McGimpsey JE McGimpsey is offline
external usenet poster
 
Posts: 4,624
Default Macros

one way:

Put it in a regular code module (Insert/Module in the VBE).

Public Sub DateTimeButton_Click()
Worksheets("SLP Schedule").Range("P2").Value = Now
End Sub




In article ,
"Erik" wrote:

I have a sub in the thisworkbook code that places a date/time stamp in a cell
when the workbook is opened. How can I make this a macro and assign it a
button in the toolbar instead of it running on open?

Private Sub Workbook_Open()
Worksheets("SLP Schedule").Range("P2").Value = Now
End Sub