Show a worksheet when user click on it and hide it once user switched to another sheet

saeid025

New Member
Joined
Oct 23, 2024
Messages
4
Office Version
  1. 2021
  2. 2019
  3. 2016
Platform
  1. Windows
Hey guys, first of all thanks for awesome work you done here, there is a lot of useful information here
My question is I have multiple source sheet, each of the source sheet can have 0 or more sub worksheet that are hidden; in source sheets I have hyperlinks that I want to open the corresponding sub sheet when clicked on, the problem is seems like this won't work if the sheet is hidden, my question is how I can do it?
I found this useful video, the problem with it is, it'll leave the opened sub sheet open... I want the sub sheet to close if the user switched to another source sheet or closed the workbook...
so what can I do?
thanks in advance.
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Hi and welcome to MrExcel!!!

I found this useful video, the problem with it is, it'll leave the opened sub sheet open
I assume you already figured out how to make the sub sheet visible.

it'll leave the opened sub sheet open... I want the sub sheet to close if the user switched to another source sheet
To hide sub sheet put the following code in the workbooks event:

VBA Code:
Private Sub Workbook_SheetDeactivate(ByVal Sh As Object)
  Select Case Sh.Name
    Case "Sheet1", "Sheet2", "Sheet3"   'source sheet names
    Case Else
      Sh.Visible = 0
  End Select
End Sub

Private Sub Workbook_BeforeClose(Cancel As Boolean)
  'Select the first source sheet
  Sheets("Sheet1").Select
  ThisWorkbook.Save
End Sub

In this line of the macro you must put all the names of the source sheets.
Rich (BB code):
Case "Sheet1", "Sheet2", "Sheet3"   'source sheet names

And on this line put the name of the first source sheet
Rich (BB code):
 Sheets("Sheet1").Select

ThisWorkbook EVENT
- Open the VB Editor (press Alt + F11).​
- Over in the Project Explorer, double click on ThisWorkbook.​
- In the white panel that then appears, paste the above code.​


----- --
Let me know the result and I'll get back to you as soon as I can.
Sincerely
Dante Amor
----- --
 
Upvote 1
Solution
This is going to be a lot. But I think it will achieve your desired results. First, I'll show you my Sheet setup and then I will post the code.

First picture. All Sheets Un-hidden so that you can see the structure.

1729729264615.png

Then when the Workbook opens
1729729264615.png

When I select first hyperlink

1729729602134.png

When I select the first hyperlink on the next Sheet

1729729789556.png

When I select the previous Sheet

1729729891329.png

Here is the code.

Place in ThisWorkbook code module

VBA Code:
Option Explicit


Sub HideTabs()
Dim i
For i = 2 To ThisWorkbook.Sheets.Count
    ThisWorkbook.Sheets(i).Visible = False
Next i
End Sub

Private Sub Workbook_Open()
HideTabs
End Sub

Place this code in all of the next sub-level sheets

VBA Code:
Option Explicit

Private Sub Worksheet_Activate()
Dim i As Integer
For i = Me.Index + 1 To ThisWorkbook.Sheets.Count
    ThisWorkbook.Sheets(i).Visible = False
Next i
End Sub

Private Sub Worksheet_FollowHyperlink(ByVal Target As Hyperlink)
Dim x As Variant
Set x = Target
With ThisWorkbook.Sheets(Target.Name)
    .Visible = True
    .Activate
End With
End Sub
 

Attachments

  • 1729729516439.png
    1729729516439.png
    106.8 KB · Views: 3
Upvote 1
thank you very much for fast answer, I have a few question
in here
VBA Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
    'Select the first source sheet Sheets
    ("Sheet1").Select
    ThisWorkbook.Save
End Sub
we are selecting the first sheet and then saving, are we sure that we receive `Workbook_SheetDeactivate` event before and there is no sheet visible (except source ones)
 
Upvote 0
w
This is going to be a lot. But I think it will achieve your desired results. First, I'll show you my Sheet setup and then I will post the code.

First picture. All Sheets Un-hidden so that you can see the structure.

View attachment 118457

Then when the Workbook opens
View attachment 118457

When I select first hyperlink

View attachment 118459

When I select the first hyperlink on the next Sheet

View attachment 118460

When I select the previous Sheet

View attachment 118461

Here is the code.

Place in ThisWorkbook code module

VBA Code:
Option Explicit


Sub HideTabs()
Dim i
For i = 2 To ThisWorkbook.Sheets.Count
    ThisWorkbook.Sheets(i).Visible = False
Next i
End Sub

Private Sub Workbook_Open()
HideTabs
End Sub

Place this code in all of the next sub-level sheets

VBA Code:
Option Explicit

Private Sub Worksheet_Activate()
Dim i As Integer
For i = Me.Index + 1 To ThisWorkbook.Sheets.Count
    ThisWorkbook.Sheets(i).Visible = False
Next i
End Sub

Private Sub Worksheet_FollowHyperlink(ByVal Target As Hyperlink)
Dim x As Variant
Set x = Target
With ThisWorkbook.Sheets(Target.Name)
    .Visible = True
    .Activate
End With
End Sub
Wow! thank you for the full code, this look very interesting, just two question:
1. when we close the excel does the state reset to just having the root?
2. with this can we have multiple source sheet that we can navigate in them freely?

again thank you guys! I didn't expected to get answers this fast!
 
Upvote 0
are we sure that we receive `Workbook_SheetDeactivate` event before and there is no sheet visible (except source ones)
Yes

When closing, select a source sheet, you will automatically deselect a sheet and hide it.

Careful! the instruction is:

VBA Code:
Sheets("Sheet1").Select


And you are putting something else:
1729736197553.png


----- --
Let me know the result and I'll get back to you as soon as I can.
Sincerely
Dante Amor
----- --
 
Upvote 1

Forum statistics

Threads
1,223,162
Messages
6,170,431
Members
452,326
Latest member
johnshaji

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top