Consulting

Results 1 to 3 of 3

Thread: reset filter mode

  1. #1
    VBAX Mentor
    Joined
    Jun 2005
    Posts
    374
    Location

    reset filter mode

    hello
    i have a filtered sheet .how do i reset it back to off
    using vba?
    thanks
    moshe

  2. #2
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    [vba]
    If ActiveSheet.AutoFilterMode Then
    Cells.AutoFilter
    End If
    [/vba]

  3. #3
    VBAX Expert
    Joined
    Jul 2004
    Location
    Wilmington, DE
    Posts
    600
    Location
    [VBA] If Not ActiveSheet.AutoFilter Is Nothing Then [a1].AutoFilter[/VBA]

Posting Permissions

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