Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I've been using the same filtered worksheet all day and it has filtered to my
chosen item in the drop down list. All of the sudden, when trying to go from one filtered item to the next, the filtered list doesn't appear when I try clicking on the triangle. No changes have been made to the workbook and freeze panes isn't on. Has anyone else had this happen? Is it a bug? The only way of getting them back on is to unfilter the entire area, unhide the rows, which are stuck to the last filtered items, and then reapply filters. |
#2
![]() |
|||
|
|||
![]()
Have you been deleting names from your workbook indiscriminately?
Maybe with code like this: Option Explicit Sub testme() Dim myName As Name For Each myName In ActiveWorkbook.Names myName.Delete Next myName End Sub If yes, then you could have deleted a hidden name created by excel. Maybe this'll help... Select your cells with the arrows -- just the header row is enough. Then Insert|name|Define in the names in workbook box, type this: 'Sheet1'!_FilterDatabase (change sheet1 to match your worksheet name.) Caroline Lackey wrote: I've been using the same filtered worksheet all day and it has filtered to my chosen item in the drop down list. All of the sudden, when trying to go from one filtered item to the next, the filtered list doesn't appear when I try clicking on the triangle. No changes have been made to the workbook and freeze panes isn't on. Has anyone else had this happen? Is it a bug? The only way of getting them back on is to unfilter the entire area, unhide the rows, which are stuck to the last filtered items, and then reapply filters. -- Dave Peterson |
#3
![]() |
|||
|
|||
![]()
Thanks very much Dave.
I did not have any names defined in this workbook and there is only one sheet. I tried your suggestion anyway, but unfortunately it didn't work. Once again, when I opened the workbook this morning, it's treating the most recently saved filter as if I had hidden the rows. Once again, I have to remove filters altogether, unhide the rows, then put filters back on. I thought it might have something to do with Accessibility Options because I was having a problem last week with "Sticky Keys". I had mistakenly turned it on and was having a really difficult time trying to get it turned off - even though it was showing up in Accessibility options as unticked. The only way I could get it off was to go into Accessibility Options, turn it on, and then turn it off again. "Dave Peterson" wrote: Have you been deleting names from your workbook indiscriminately? Maybe with code like this: Option Explicit Sub testme() Dim myName As Name For Each myName In ActiveWorkbook.Names myName.Delete Next myName End Sub If yes, then you could have deleted a hidden name created by excel. Maybe this'll help... Select your cells with the arrows -- just the header row is enough. Then Insert|name|Define in the names in workbook box, type this: 'Sheet1'!_FilterDatabase (change sheet1 to match your worksheet name.) Caroline Lackey wrote: I've been using the same filtered worksheet all day and it has filtered to my chosen item in the drop down list. All of the sudden, when trying to go from one filtered item to the next, the filtered list doesn't appear when I try clicking on the triangle. No changes have been made to the workbook and freeze panes isn't on. Has anyone else had this happen? Is it a bug? The only way of getting them back on is to unfilter the entire area, unhide the rows, which are stuck to the last filtered items, and then reapply filters. -- Dave Peterson |
#4
![]() |
|||
|
|||
![]()
Are you saying that turning off sticky keys made the autofilter work again?
(My first thought is coincidence--not cause and effect, but who knows!) Caroline Lackey wrote: Thanks very much Dave. I did not have any names defined in this workbook and there is only one sheet. I tried your suggestion anyway, but unfortunately it didn't work. Once again, when I opened the workbook this morning, it's treating the most recently saved filter as if I had hidden the rows. Once again, I have to remove filters altogether, unhide the rows, then put filters back on. I thought it might have something to do with Accessibility Options because I was having a problem last week with "Sticky Keys". I had mistakenly turned it on and was having a really difficult time trying to get it turned off - even though it was showing up in Accessibility options as unticked. The only way I could get it off was to go into Accessibility Options, turn it on, and then turn it off again. "Dave Peterson" wrote: Have you been deleting names from your workbook indiscriminately? Maybe with code like this: Option Explicit Sub testme() Dim myName As Name For Each myName In ActiveWorkbook.Names myName.Delete Next myName End Sub If yes, then you could have deleted a hidden name created by excel. Maybe this'll help... Select your cells with the arrows -- just the header row is enough. Then Insert|name|Define in the names in workbook box, type this: 'Sheet1'!_FilterDatabase (change sheet1 to match your worksheet name.) Caroline Lackey wrote: I've been using the same filtered worksheet all day and it has filtered to my chosen item in the drop down list. All of the sudden, when trying to go from one filtered item to the next, the filtered list doesn't appear when I try clicking on the triangle. No changes have been made to the workbook and freeze panes isn't on. Has anyone else had this happen? Is it a bug? The only way of getting them back on is to unfilter the entire area, unhide the rows, which are stuck to the last filtered items, and then reapply filters. -- Dave Peterson -- Dave Peterson |
#5
![]() |
|||
|
|||
![]()
No, it didn't make the autofilter work, but because I was having so much
trouble with the Sticky keys, I wouldn't have been surprised if this somehow affected the autofilters. "Dave Peterson" wrote: Are you saying that turning off sticky keys made the autofilter work again? (My first thought is coincidence--not cause and effect, but who knows!) Caroline Lackey wrote: Thanks very much Dave. I did not have any names defined in this workbook and there is only one sheet. I tried your suggestion anyway, but unfortunately it didn't work. Once again, when I opened the workbook this morning, it's treating the most recently saved filter as if I had hidden the rows. Once again, I have to remove filters altogether, unhide the rows, then put filters back on. I thought it might have something to do with Accessibility Options because I was having a problem last week with "Sticky Keys". I had mistakenly turned it on and was having a really difficult time trying to get it turned off - even though it was showing up in Accessibility options as unticked. The only way I could get it off was to go into Accessibility Options, turn it on, and then turn it off again. "Dave Peterson" wrote: Have you been deleting names from your workbook indiscriminately? Maybe with code like this: Option Explicit Sub testme() Dim myName As Name For Each myName In ActiveWorkbook.Names myName.Delete Next myName End Sub If yes, then you could have deleted a hidden name created by excel. Maybe this'll help... Select your cells with the arrows -- just the header row is enough. Then Insert|name|Define in the names in workbook box, type this: 'Sheet1'!_FilterDatabase (change sheet1 to match your worksheet name.) Caroline Lackey wrote: I've been using the same filtered worksheet all day and it has filtered to my chosen item in the drop down list. All of the sudden, when trying to go from one filtered item to the next, the filtered list doesn't appear when I try clicking on the triangle. No changes have been made to the workbook and freeze panes isn't on. Has anyone else had this happen? Is it a bug? The only way of getting them back on is to unfilter the entire area, unhide the rows, which are stuck to the last filtered items, and then reapply filters. -- Dave Peterson -- Dave Peterson |
#6
![]() |
|||
|
|||
![]()
Thanks for the clarification post.
Caroline Lackey wrote: No, it didn't make the autofilter work, but because I was having so much trouble with the Sticky keys, I wouldn't have been surprised if this somehow affected the autofilters. "Dave Peterson" wrote: Are you saying that turning off sticky keys made the autofilter work again? (My first thought is coincidence--not cause and effect, but who knows!) Caroline Lackey wrote: Thanks very much Dave. I did not have any names defined in this workbook and there is only one sheet. I tried your suggestion anyway, but unfortunately it didn't work. Once again, when I opened the workbook this morning, it's treating the most recently saved filter as if I had hidden the rows. Once again, I have to remove filters altogether, unhide the rows, then put filters back on. I thought it might have something to do with Accessibility Options because I was having a problem last week with "Sticky Keys". I had mistakenly turned it on and was having a really difficult time trying to get it turned off - even though it was showing up in Accessibility options as unticked. The only way I could get it off was to go into Accessibility Options, turn it on, and then turn it off again. "Dave Peterson" wrote: Have you been deleting names from your workbook indiscriminately? Maybe with code like this: Option Explicit Sub testme() Dim myName As Name For Each myName In ActiveWorkbook.Names myName.Delete Next myName End Sub If yes, then you could have deleted a hidden name created by excel. Maybe this'll help... Select your cells with the arrows -- just the header row is enough. Then Insert|name|Define in the names in workbook box, type this: 'Sheet1'!_FilterDatabase (change sheet1 to match your worksheet name.) Caroline Lackey wrote: I've been using the same filtered worksheet all day and it has filtered to my chosen item in the drop down list. All of the sudden, when trying to go from one filtered item to the next, the filtered list doesn't appear when I try clicking on the triangle. No changes have been made to the workbook and freeze panes isn't on. Has anyone else had this happen? Is it a bug? The only way of getting them back on is to unfilter the entire area, unhide the rows, which are stuck to the last filtered items, and then reapply filters. -- Dave Peterson -- Dave Peterson -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Subtotal has stopped working | Excel Worksheet Functions | |||
Drop-down boxes stopped working | Excel Discussion (Misc queries) | |||
Auto Filter not working properly | Excel Discussion (Misc queries) | |||
Addendum to "Subtotal has stopped working" | Excel Worksheet Functions | |||
"find" and "filter" working weirdly | Excel Discussion (Misc queries) |