Results 1 to 4 of 4

Vba errors 400 and 1004

Threaded View

  1. #3
    Forum Expert Colin Legg's Avatar
    Join Date
    03-30-2008
    Location
    UK
    MS-Off Ver
    365
    Posts
    1,256

    Re: Vba errors 400 and 1004

    Hi,

    If you try to show all data when either

    (1) There isn't an autofilter object or
    (2) The autofilter object isn't actively filtering anything

    Then you'll get a runtime error. Other things may interfere too - such as worksheet protection.

    You are using XL 2003 so I would do it like this:
    Sub ShowAll()
    
        Worksheets("Front").Range("Option_att_flag").Value = "Any"
        Worksheets("Front").Range("option_gender").Value = "Any"
        Worksheets("Front").Range("option_cic").Value = "Any"
        Worksheets("Front").Range("option_SenLevel").Value = "Any"
        
        If Worksheets("List").AutoFilterMode Then
            If Worksheets("List").FilterMode Then
                Worksheets("List").ShowAllData
            End If
        End If
        
    End Sub


    @ mohd9876
    Unfortunately, in XL 2003 the Autofilter object does not have a ShowAllData method, so headexperiment won't be able to check your suggestion.
    Last edited by Colin Legg; 06-13-2011 at 06:45 AM. Reason: comment re 2003 ShowAllData
    Hope that helps,

    Colin

    RAD Excel Blog

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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