Hi hond,
Welcome to the forum!!
Please make sure you wrap all code with the appropriate tags as I have done.
You could have two macros from the same button if your macro actually changed the button name so it could distinguish which piece of code to run. The problem above is that you cannot have the same macro name twice in the same workbook.
You could simply combine the two statements into one macro like so:
Option Explicit
Sub Invoicelog_Button2_Click()
Dim fname As String
fname = "My path " & Format(Now, "dd mmm yy") & ".xls"
ActiveWorkbook.SaveCopyAs Filename:=fname
Range("K3").Value = Now()
End Sub
HTH
Robert
Bookmarks