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