Use autofilter with macro in a protected sheet

  • Thread starter Thread starter Minos
  • Start date Start date
M

Minos

Hi,

I have a protected worksheet with the option of “Use Autofilter†enabled.
I have a macro that runs a filter for selected records. I have a second macro
(see below) that removes the previous filter.

ActiveSheet.Unprotect
Selection.AutoFilter Field:=20
ActiveSheet.Protect

End Sub

How can I again enable the “Use Autofilter†together with the “Active
Sheet.Protect†command.

Thanks

Minos
 
Change the last line to callout what you want to allow. The standard
protection protects drawing objects, contents, and scenarios. We'll just add
on that you want to allow filtering.

ActiveSheet.Protect DrawingObjects:=True, Contents:=True,
Scenarios:=True _
, AllowFiltering:=True
 
Back
Top