Excel VBA: Jump to hidden worksheets?
Hello Community,
I have a small VBA problem in Excel.
The situation: I have a workbook with several worksheets. These sheets are displayed in a dropdown menu. Using a command button, I then jump to the worksheet previously selected in the dropdown menu:
Here is the code of the command button:
Private Sub CommandButton1_Click() ThisWorkbook.Sheets(Range("D7").Value).Select End Sub
However, this code only works as long as I also display the sheets at the bottom of the folder.
Now to my question: What should the code look like if I hide the worksheets?
Problem is solved!
If someone has the same problem and stumbles on this question, here is the working code:
The selected table is thus visible. In the second step, it is navigated directly there.
On the respective table there is a button to get back to the dashboard. So that the table is also hidden again, simply enter the following at the end of the code for the respective button:
In TABELLENNAME, of course, take the name of the table to be hidden.
Maybe it’ll help someone sometime.