ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Hide a worksheet (https://www.excelbanter.com/excel-worksheet-functions/242191-hide-worksheet.html)

Mac

Hide a worksheet
 
Hello,
I have a macro that works great. It works on check box and deletes the sheet
I do not need. However, I have one worksheet that I do not want to delete, I
would like to hide it. An example is:

Private Sub CheckBox3_Click()
Application.DisplayAlerts = False
Sheets("Checklist").Delete
Sheets("Agenda").Delete
Sheets("Comparison").Delete

The sheet I want to hide is:
Sheets("Information").Visible = False

Could you tell me what I am doing wrong?

Any help is appreciated.

Thank you




--
thank you mac

Jacob Skaria

Hide a worksheet
 
Do you mean the below line doesnt work...It should..
Sheets("Information").Visible = False

There are 3 states for the visible property. Try one of these..

Sheets("Information").Visible = xlSheetHidden
Sheets("Information").Visible = xlSheetVeryHidden
Sheets("Information").Visible = xlSheetVisible

If this post helps click Yes
---------------
Jacob Skaria


"mac" wrote:

Hello,
I have a macro that works great. It works on check box and deletes the sheet
I do not need. However, I have one worksheet that I do not want to delete, I
would like to hide it. An example is:

Private Sub CheckBox3_Click()
Application.DisplayAlerts = False
Sheets("Checklist").Delete
Sheets("Agenda").Delete
Sheets("Comparison").Delete

The sheet I want to hide is:
Sheets("Information").Visible = False

Could you tell me what I am doing wrong?

Any help is appreciated.

Thank you




--
thank you mac


pshepard[_2_]

Hide a worksheet
 
Hi Mac,

The following macro works for me

Private Sub CheckBox3_Click()
Application.DisplayAlerts = False
Sheets("Checklist").Delete
Sheets("Agenda").Delete
Sheets("Comparison").Delete
Sheets("Information").Visible = False
End Sub
--
If this post helps click Yes
---------------
Peggy Shepard


"mac" wrote:

Hello,
I have a macro that works great. It works on check box and deletes the sheet
I do not need. However, I have one worksheet that I do not want to delete, I
would like to hide it. An example is:

Private Sub CheckBox3_Click()
Application.DisplayAlerts = False
Sheets("Checklist").Delete
Sheets("Agenda").Delete
Sheets("Comparison").Delete

The sheet I want to hide is:
Sheets("Information").Visible = False

Could you tell me what I am doing wrong?

Any help is appreciated.

Thank you




--
thank you mac



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

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