Hello,
Is it possible to assign 2 macros to 1 button? The macros I want to combine are:
Sub Invoicelog_Button2_Click()
Dim fname
fname = "My path" & Format(Now, "dd mmm yy") & ".xls"
ActiveWorkbook.SaveCopyAs Filename:=fname
End Sub
And:
Sub Invoicelog_Button2_Click()
Range("K3").Value = Now()
End Sub
Now, it gives me an error: Ambigious name detected
I am new to VBA, can anyone help me?
Thanks
Bookmarks