B
Bill Kuunders
is there a way to hyperlink from one workbook to a specific worksheet in
Gord Dibben had this as a solution which works fine.
Private Sub Worksheet_BeforeDoubleClick(ByVal _
Gord,
Would there be a way I can look for a value say in cell C2 on each sheet
rather than the tab name.
Thanks
Bill Kuunders NZ
Gord Dibben had this as a solution which works fine.
Private Sub Worksheet_BeforeDoubleClick(ByVal _
Target As Range, Cancel As Boolean)
Const WS_RANGE As String = "A1:A80"
If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then
Workbooks.Open Filename:= _
"C:\Program Files\Microsoft Office\Exceldata\Book1.xls"
ActiveWorkbook.Sheets(Target.Value).Activate
End If
End Sub
Gord,
Would there be a way I can look for a value say in cell C2 on each sheet
rather than the tab name.
Thanks
Bill Kuunders NZ