Grouping/Ungrouping locked sheets VBA code help

gaz67

New Member
Joined
Jan 6, 2018
Messages
6
Hi all,

I have a simple VBA workbook code to allow my grouped rows to be grouped and ungrouped when a sheet is locked.

I have 2 sheets, Estimate & Schedule. It only works on 1 sheet that i name eg: "Estimate".
How can i make it work on both sheets or the entire workbook?

Option Explicit
Private Sub Workbook_Open()
With Worksheets("Estimate")
.Protect Password:="", userinterfaceonly:=True
.EnableOutlining = True
.EnableAutoFilter = True
If .FilterMode Then
.ShowAllData
End If
End With
End Sub


With Worksheets("Estimate, Schedule") ?
With Worksheets("Estimate"); ("Schedule") ?
With Workbook ??

Thanks
Gary
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
When posting code, please use Code Tags as it preserves indentations, making your code easier to read, debug, copy/paste etc. My signature block below shows how.

Try
Code:
Private Sub Workbook_Open()
  Dim ws As Worksheet
  
  For Each ws In Sheets(Array("Estimate", "Schedule"))
    With ws
      .Protect Password:="", userinterfaceonly:=True
      .EnableOutlining = True
      .EnableAutoFilter = True
      If .FilterMode Then
        .ShowAllData
      End If
    End With
  Next ws
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,890
Messages
6,127,598
Members
449,388
Latest member
macca_18380

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