S
Spottydog
I have a list set up within a worksheet and I need to protect the worksheet
and still be able to filter the list.
If I select Protect Sheet and check Enable Autofilter then it works but this
option prevents me being able to collapse the rows using the grouping.
I therefore tried a macro I found here so that the grouping works but this
stops my list filter working. The macro I'm using is:
Sub workbook_open()
With Worksheets("My Sheet Name")
.Protect , userinterfaceonly:=True
.EnableOutlining = True
.EnableAutoFilter = True
End With
Any suggestions on a command I can include in the macro so the list filter
and grouping both work in the protected sheet?
Thanks
and still be able to filter the list.
If I select Protect Sheet and check Enable Autofilter then it works but this
option prevents me being able to collapse the rows using the grouping.
I therefore tried a macro I found here so that the grouping works but this
stops my list filter working. The macro I'm using is:
Sub workbook_open()
With Worksheets("My Sheet Name")
.Protect , userinterfaceonly:=True
.EnableOutlining = True
.EnableAutoFilter = True
End With
Any suggestions on a command I can include in the macro so the list filter
and grouping both work in the protected sheet?
Thanks