Steve001
Board Regular
- Joined
- Apr 13, 2017
- Messages
- 62
- Office Version
- 365
- 2021
- 2013
- Platform
- Windows
Hi all
is there a better way of doing this ? as I was always taught to avoid the "goto" instruction
MSG1 = MsgBox("Pressing this will COMPLETELY replace ALL of the data in the 'Tabs'" & vbCrLf & "Continue ?", vbYesNo, "Sort raw Data")
If MSG1 = vbYes Then
GoTo jump
Else
End
End If
jump:
MsgBox "here we go ... "
Steve
is there a better way of doing this ? as I was always taught to avoid the "goto" instruction
MSG1 = MsgBox("Pressing this will COMPLETELY replace ALL of the data in the 'Tabs'" & vbCrLf & "Continue ?", vbYesNo, "Sort raw Data")
If MSG1 = vbYes Then
GoTo jump
Else
End
End If
jump:
MsgBox "here we go ... "
Steve