Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Why do my drop down filters no longer work?

I have an excel sheet with filters on it which now longer work. Previously
when I clicked on the arrows a drop down box would appear that I could select
from but now nothing happens when I click on the arrows.

When I go to Data, fliterthe auto filter box is greyed out and I cannot
selct it either.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Why do my drop down filters no longer work?

Is the worksheet protected?

Confused KN wrote:

I have an excel sheet with filters on it which now longer work. Previously
when I clicked on the arrows a drop down box would appear that I could select
from but now nothing happens when I click on the arrows.

When I go to Data, fliterthe auto filter box is greyed out and I cannot
selct it either.


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Why do my drop down filters no longer work?

Hi Dave,

It is but I have the password to access the sheet.

"Dave Peterson" wrote:

Is the worksheet protected?

Confused KN wrote:

I have an excel sheet with filters on it which now longer work. Previously
when I clicked on the arrows a drop down box would appear that I could select
from but now nothing happens when I click on the arrows.

When I go to Data, fliterthe auto filter box is greyed out and I cannot
selct it either.


--

Dave Peterson

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Why do my drop down filters no longer work?

Some features are disabled on protected worksheets. Changing the filter
criteria is one of those disable features.

But....

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
'If .FilterMode Then
' .ShowAllData
'End If
End With
End Sub

It needs to be reset each time you open the workbook. (Earlier versions of
excel don't remember it after closing the workbook. IIRC, xl2002+ will remember
the allow autofilter setting under tools|Protection|protect sheet, but that
won't help when you're filtering via code.)

Confused KN wrote:

Hi Dave,

It is but I have the password to access the sheet.

"Dave Peterson" wrote:

Is the worksheet protected?

Confused KN wrote:

I have an excel sheet with filters on it which now longer work. Previously
when I clicked on the arrows a drop down box would appear that I could select
from but now nothing happens when I click on the arrows.

When I go to Data, fliterthe auto filter box is greyed out and I cannot
selct it either.


--

Dave Peterson


--

Dave Peterson
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
How do I Make a drop-down box longer Inspectec Rich Excel Discussion (Misc queries) 2 March 3rd 08 07:37 PM
How do I get the Fitness Chart for Men to work longer? Prospect New Users to Excel 1 December 13th 05 07:57 PM
My links no longer work . . . mike Excel Discussion (Misc queries) 8 October 27th 05 11:59 PM
Arrow Keys no Longer Work JDT Excel Discussion (Misc queries) 6 July 21st 05 05:21 PM
Keyboard shortcuts no longer work gman100 Excel Discussion (Misc queries) 5 June 15th 05 03:36 PM


All times are GMT +1. The time now is 07:15 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"