mrMadCat
New Member
- Joined
- Jun 8, 2016
- Messages
- 39
- Office Version
- 365
- Platform
- Windows
- Mobile
- Web
I have this code in Workbook module:
After 2 seconds it says that there is no such macro Message1. What did I miss? Thank you.
Code:
Sub MESSAGE1()
msgBox "Change"
End Sub
Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
Application.OnTime Now + TimeValue("00:00:02"), "MESSAGE1"
End Sub