View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Roger Govier Roger Govier is offline
external usenet poster
 
Posts: 2,886
Default protect cell ranges in spreadsheet and have data filters on

Hi

Include something like the following code in your Workbook_Open sub

Private Sub Workbook_Open()
Worksheets("Sheet1").Select
With ActiveSheet
.EnableAutoFilter = True
.Protect Password:="password", DrawingObjects:=True, _
contents:=True, Scenarios:=True, UserInterfaceOnly:=True
End With
End Sub


Change "Sheet1" to whatever your sheet name is and change "password" to
the password you want to use.
--
Regards

Roger Govier


"prizm" wrote in message
...
I have a need to protect cell ranges in a spreadsheet and have data
filters
on and working. I am unable to both protect the worksheet with
selected
unlocked cells and have data filters working.