![]() |
VBA code
Hi all
Thanks for previous help.It was very helpfull. Now again I need a code to display group of sheets and activate one of them and hide other sheets rather than group displayed . Many thanks if anybody can help. |
VBA code
Paste the procedure "DisplayWorksheet" and call that from the command button
click event like below example DisplayWorksheet ("Sheet1") Sub DisplayWorksheet(strSheet As String) 'This will hide all other sheets except "Summary" and display strSheet Application.ScreenUpdating = False For Each wstemp In ActiveWorkbook.Sheets If wstemp.Name < "Summary" Then wstemp.Visible = False Next ActiveWorkbook.Sheets(strSheet).Visible = True Application.ScreenUpdating = True End Sub -- If this post helps click Yes --------------- Jacob Skaria "NIDAL" wrote: Hi all Thanks for previous help.It was very helpfull. Now again I need a code to display group of sheets and activate one of them and hide other sheets rather than group displayed . Many thanks if anybody can help. |
All times are GMT +1. The time now is 11:31 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com