ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Hyperlink (https://www.excelbanter.com/excel-worksheet-functions/85029-hyperlink.html)

bimseun

Hyperlink
 
How do i insert hyperlink so that users would not have to "press ctrl click"
but rather just click to get to the desire folder or file?
oro ago

Don Guillett

Hyperlink
 
right click on sheet tabview codeleft window select worksheetright window
select double_click

Sample
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
Application.DisplayAlerts = False
Dim WantedSheet As String
WantedSheet = Trim(ActiveCell.Value)
If WantedSheet = "" Then Exit Sub
On Error Resume Next
If Sheets(ActiveCell.Value) Is Nothing Then
Else
Sheets(ActiveCell.Value).Select
End If
Application.DisplayAlerts = True
End Sub
--
Don Guillett
SalesAid Software

"bimseun" wrote in message
...
How do i insert hyperlink so that users would not have to "press ctrl
click"
but rather just click to get to the desire folder or file?
oro ago





All times are GMT +1. The time now is 08:08 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com