Group:  Microsoft Excel ยป microsoft.public.excel.setup
Thread: filter on a protected sheet

DotNetBag
.NET Development Newsgroups

HTVi
TV Discussion Newsgroups

Our Hot Pick: Rising Antivirus 2006 - Certified by TUV & Checkmark! Get 10% discount by entering this coupon code: ONDISCOUNT10
Rising Antivirus 2006

filter on a protected sheet
"peter" <plaz987[ at ]yahoo.com> 10.07.2006 02:18:17
I have a sheet on which I need to protect some cells. I have it
filtered. Whenever I protect the sheet, I cannot click on the little
arrow to filter, even on cells that are not protected. What am I doing
wrong?

Thanks,


Peter

Re: filter on a protected sheet
"Nick Hodge" <nick_hodgeTAKETHISOUT[ at ]zen.co.uk.ANDTHIS> 10.07.2006 06:48:23
In XL XP (2002) on (I Think), you have the ability to allow filtering in the
worksheet protection dialog

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
www.nickhodge.co.uk
nick_hodgeTAKETHISOUT[ at ]zen.co.uk.ANDTHIS


"peter" <plaz987[ at ]yahoo.com> wrote in message
news:1152497897.355274.209020[ at ]75g2000cwc.googlegroups.com...
[Quoted Text]
>I have a sheet on which I need to protect some cells. I have it
> filtered. Whenever I protect the sheet, I cannot click on the little
> arrow to filter, even on cells that are not protected. What am I doing
> wrong?
>
> Thanks,
>
>
> Peter
>


Re: filter on a protected sheet
Gord Dibben <gorddibbATshawDOTca> 10.07.2006 20:37:13
But you must have the filters enabled/set prior to protecting the worksheet.

XL 2002 and 2003


Gord Dibben MS Excel MVP

On Mon, 10 Jul 2006 07:48:23 +0100, "Nick Hodge"
<nick_hodgeTAKETHISOUT[ at ]zen.co.uk.ANDTHIS> wrote:

[Quoted Text]
>In XL XP (2002) on (I Think), you have the ability to allow filtering in the
>worksheet protection dialog

Re: filter on a protected sheet
"peter" <plaz987[ at ]yahoo.com> 10.07.2006 22:52:10
I have Excel 2000. Am I out of luck?

Thanks,

Peter



Gord Dibben wrote:
[Quoted Text]
> But you must have the filters enabled/set prior to protecting the worksheet.
>
> XL 2002 and 2003
>
>
> Gord Dibben MS Excel MVP
>
> On Mon, 10 Jul 2006 07:48:23 +0100, "Nick Hodge"
> <nick_hodgeTAKETHISOUT[ at ]zen.co.uk.ANDTHIS> wrote:
>
> >In XL XP (2002) on (I Think), you have the ability to allow filtering in the
> >worksheet protection dialog

Re: filter on a protected sheet
Dave Peterson <petersod[ at ]verizonXSPAM.net> 10.07.2006 23:04:51
You can with a little VBA:

If you already have the outline/subtotals/autofilter applied, you can protect
the worksheet in code (auto_open/workbook_open??).

Option Explicit
Sub auto_open()
With Worksheets("sheet1")
.Protect Password:="hi", userinterfaceonly:=True
'.EnableOutlining = True
.EnableAutoFilter = True
End With
End Sub

It needs to be reset each time you open the workbook. (excel doesn't remember
it after closing the workbook.)

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

peter wrote:
[Quoted Text]
>
> I have Excel 2000. Am I out of luck?
>
> Thanks,
>
> Peter
>
> Gord Dibben wrote:
> > But you must have the filters enabled/set prior to protecting the worksheet.
> >
> > XL 2002 and 2003
> >
> >
> > Gord Dibben MS Excel MVP
> >
> > On Mon, 10 Jul 2006 07:48:23 +0100, "Nick Hodge"
> > <nick_hodgeTAKETHISOUT[ at ]zen.co.uk.ANDTHIS> wrote:
> >
> > >In XL XP (2002) on (I Think), you have the ability to allow filtering in the
> > >worksheet protection dialog

--

Dave Peterson

Home | Search | Terms | Imprint | Contact
Newsgroups Reader - provided by WiredBox.Net