Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Not Intersect(Target, Range("I5:N16,W5:AH16")) Is Nothing Then
Cancel = True
Application.Goto Sheets(Cells(Target.Row, 5).Value).Cells(26, Target.Column)
End If
End Sub