I have an Excel spreadsheet with three sheets. One of the sheets contains formulas for one of the other sheets.
Is there a programmatic way to hide the sheet which c
I would like to answer your question, as there are various methods - here I’ll talk about the code that is widely used.
So, for hiding the sheet:
Sub try() Worksheets("Sheet1").Visible = xlSheetHidden End Sub
There are other methods also if you want to learn all Methods Click here