Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
When I protect a worksheet but allow all users of this worksheet to UseAutoFilter, the Auto Filter feature is still locked out. Any idea on how to remedy this? Thank you |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
See
http://www.contextures.com/xlautofilter03.html#Protect Hope this helps, Hutch "Glenn" wrote: Hi, When I protect a worksheet but allow all users of this worksheet to UseAutoFilter, the Auto Filter feature is still locked out. Any idea on how to remedy this? Thank you |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hutch,
I'm using excel 2003 and the dialog box appears when I select protect worksheet asking which functions I want allow users to permission to use. I check the box next to Use AutoFilter, but it still locks out that function once the sheet is protected. "Tom Hutchins" wrote: See http://www.contextures.com/xlautofilter03.html#Protect Hope this helps, Hutch "Glenn" wrote: Hi, When I protect a worksheet but allow all users of this worksheet to UseAutoFilter, the Auto Filter feature is still locked out. Any idea on how to remedy this? Thank you |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You have to add the AutoFilter BEFORE protecting the worksheet. Are you doing
that? Hutch "Glenn" wrote: Hutch, I'm using excel 2003 and the dialog box appears when I select protect worksheet asking which functions I want allow users to permission to use. I check the box next to Use AutoFilter, but it still locks out that function once the sheet is protected. "Tom Hutchins" wrote: See http://www.contextures.com/xlautofilter03.html#Protect Hope this helps, Hutch "Glenn" wrote: Hi, When I protect a worksheet but allow all users of this worksheet to UseAutoFilter, the Auto Filter feature is still locked out. Any idea on how to remedy this? Thank you |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hutch,
I tried that and saw that it did work, but I was trying to avoid having the drop down arrows showing all the time. "Tom Hutchins" wrote: You have to add the AutoFilter BEFORE protecting the worksheet. Are you doing that? Hutch "Glenn" wrote: Hutch, I'm using excel 2003 and the dialog box appears when I select protect worksheet asking which functions I want allow users to permission to use. I check the box next to Use AutoFilter, but it still locks out that function once the sheet is protected. "Tom Hutchins" wrote: See http://www.contextures.com/xlautofilter03.html#Protect Hope this helps, Hutch "Glenn" wrote: Hi, When I protect a worksheet but allow all users of this worksheet to UseAutoFilter, the Auto Filter feature is still locked out. Any idea on how to remedy this? Thank you |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
All I can suggest then is to put a button your worksheet which will call a
macro like the following to toggle the AutoFilter on/off. Sub ToggleAutoFilter() Const Pwd = "xyz" With ActiveSheet 'Unprotect the sheet .Unprotect Password:=Pwd$ 'Select the heading range .Range("A1:E1").Select 'If AutoFilter is already applied If .AutoFilterMode = True Then 'Remove the AutoFilter .AutoFilterMode = False Else 'Select the heading range and 'apply the AutoFilter .Range("A1:E1").Select Selection.AutoFilter End If 'Reprotect the sheet .Protect Password:=Pwd$, DrawingObjects:=True, _ Contents:=True, Scenarios:=True, _ AllowFiltering:=True End With End Sub You would have to edit the password and headings range. You should also password protect the VBAProject for the workbook, to keep users from seeing the password in the macro. Excel is not terribly secure, however, once a workbook is open. Hope this helps, Hutch "Glenn" wrote: Hutch, I tried that and saw that it did work, but I was trying to avoid having the drop down arrows showing all the time. "Tom Hutchins" wrote: You have to add the AutoFilter BEFORE protecting the worksheet. Are you doing that? Hutch "Glenn" wrote: Hutch, I'm using excel 2003 and the dialog box appears when I select protect worksheet asking which functions I want allow users to permission to use. I check the box next to Use AutoFilter, but it still locks out that function once the sheet is protected. "Tom Hutchins" wrote: See http://www.contextures.com/xlautofilter03.html#Protect Hope this helps, Hutch "Glenn" wrote: Hi, When I protect a worksheet but allow all users of this worksheet to UseAutoFilter, the Auto Filter feature is still locked out. Any idea on how to remedy this? Thank you |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003/7 VBA (Un) Protection not working | Excel Worksheet Functions | |||
Cell Protection vs. Worksheet Protection | Excel Discussion (Misc queries) | |||
Worksheet protection is gone and only wokbook protection can be se | Excel Discussion (Misc queries) | |||
Working in a Worksheet that has protection on | Excel Worksheet Functions | |||
Protection is working sparadically | Excel Discussion (Misc queries) |