still learning
Well-known Member
- Joined
- Jan 15, 2010
- Messages
- 821
- Office Version
- 365
- Platform
- Windows
Hi
I use the following event macro to trigger another macro
Is there a way to only have it work only once each time the worksheet is open.
OR should I make a button on the ribbon that disables it after it runs and enables it before I save and close the worksheet
mike
I use the following event macro to trigger another macro
HTML:
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Not Intersect(Target, Range("I:I")) Is Nothing Then
If Target.Value <> "" Then
eventcopy
End If
End If
End Sub
Is there a way to only have it work only once each time the worksheet is open.
OR should I make a button on the ribbon that disables it after it runs and enables it before I save and close the worksheet
mike