I have a workbook that has a simple workbook open event (below). Later, I save the workbook with another name (unique to creator) and would like the workbook_Open event to be removed. I don't want it to happen anymore after the new save. Can I do that programmatically? I'm very basic to this stuff, so be simple with me please. Thanks!
MrsTFB in Tennessee
Private Sub Workbook_Open()
Application.ScreenUpdating = False
Range("AZ2").Select
ActiveCell.Value = ActiveCell.Value + 1
ActiveWorkbook.Save
Load SignIn
SignIn.Show
End Sub
MrsTFB in Tennessee
Private Sub Workbook_Open()
Application.ScreenUpdating = False
Range("AZ2").Select
ActiveCell.Value = ActiveCell.Value + 1
ActiveWorkbook.Save
Load SignIn
SignIn.Show
End Sub