Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 122
Default Worksheet Protection not Working

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,069
Default Worksheet Protection not Working

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 122
Default Worksheet Protection not Working

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,069
Default Worksheet Protection not Working

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 122
Default Worksheet Protection not Working

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,069
Default Worksheet Protection not Working

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel 2003/7 VBA (Un) Protection not working Ferdie Excel Worksheet Functions 1 November 29th 07 02:15 PM
Cell Protection vs. Worksheet Protection kmwhitt Excel Discussion (Misc queries) 4 September 24th 06 02:37 AM
Worksheet protection is gone and only wokbook protection can be se Eric C. Excel Discussion (Misc queries) 4 May 2nd 06 04:50 PM
Working in a Worksheet that has protection on Melanie Ferguson Excel Worksheet Functions 0 October 4th 05 02:58 PM
Protection is working sparadically formhelp Excel Discussion (Misc queries) 1 May 10th 05 06:11 PM


All times are GMT +1. The time now is 12:14 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"