Question : Referencing a hidden sheet in excel using a hyperlink

I have a hyperlink in my excel workbook that references a hidden sheet.

When I click on the hyperlink nothing happens since the workbook is hidden.

Is there code I can add to unhide the sheet when you click on the hyperlink?

Answer : Referencing a hidden sheet in excel using a hyperlink

Hello,
You can try the following

Sub dHiddenSheet()
    Worksheets("Sheet1").Visible = xlSheetVisible
    '...your code
    Worksheets("Sheet1").Visible = xlSheetHidden
End Sub

Tony_813
Random Solutions  
 
programming4us programming4us