Say each sheet has the employee name. Make a summary sheet with the names in
column A. Might look like:
Jones
Ravenswood
Smith
If you like, put them in alphabetic order.
Then insert the following event macro in the worksheet code area:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
If Intersect(Target, Range("A:A")) Is Nothing Then Exit Sub
Cancel = True
On Error Resume Next
Sheets(Target.Value).Activate
If Err <> 0 Then
MsgBox ("Sheet not found")
Err = 0
End If
End Sub
Now if you double-click on a person's name in column A, you will
automatically be taken to the correct worksheet. If there is a problem, you
will get a message.