+ Reply to Thread
Results 1 to 2 of 2

using autofilter in excel and feature locks up

  1. #1

    using autofilter in excel and feature locks up

    Why would a filtered spreadsheet not unfilter?


  2. #2
    RichardSchollar
    Guest

    Re: using autofilter in excel and feature locks up

    Hi

    I get this sometimes and I have found no way to avoid it. What is
    annoying is that the standard filter button thru Excel does not remove
    autofilter (it just turns autofilter on) which means you have a two
    stage process of Data>Autofilter to turn it off. Also, I often end up
    with hidden rows doing it this way, so then need to unhide those.

    The most practical solution I came up with was placing a custom button
    on one of my menu bars and assigning a subroutine to it which was:

    Sub TurnOffAutofilter()
    ActiveCell.EntireRow.AutoFilter
    With Cells
    .EntireColumn.Hidden = False
    .EntireRow.Hidden = False
    End With
    End Sub

    This can be modified to match your specific needs if required.

    Richard
    [email protected] wrote:

    > Why would a filtered spreadsheet not unfilter?



+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1