Here is a quick macro to place on Sheet1. I assume that the other three sheets are sheets 2 thru 4 and named as you have suggested.
This macro allows you to delete your selection, or go to the nominated sheet.
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
If Target.Address = "$A$1" Then
If Target.Value = "" Then
Sheets("Sheet1").Select
Exit Sub
End If
sht = Target.Value
Sheets(sht).Select
End If
End Sub
I hope this helps, please let me know!
Regards,
David
When you reply please make it clear WHO you are responding to by mentioning their name.
If this has been of assistance, please advise. A little thanks goes a long way.
- Please click on the *Add Reputation button at the bottom of helpful responses.
Please mark your thread as SOLVED:
- Click Thread Tools above your first post, select "Mark your thread as Solved".
Bookmarks