Yes. The following macro will take you to a sheet named "Whatever" if you
click on cell A1 of the active sheet. This is a sheet event macro and must
be placed in the sheet module of your sheet. Access that module by
right-clicking the sheet tab and selecting View Code. HTH Otto
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Not Intersect(Target, Range("A1")) Is Nothing Then
Sheets("Whatever").Select
End If
End Sub