Results 1 to 5 of 5

Hiding Autofilter arrows

Threaded View

RobLink Hiding Autofilter arrows 04-28-2011, 10:29 AM
Sadath31 Re: Hiding Autofilter arrows 04-28-2011, 10:39 AM
romperstomper Re: Hiding Autofilter arrows 04-28-2011, 10:48 AM
RobLink Re: Hiding Autofilter arrows 04-28-2011, 10:56 AM
RobLink Re: Hiding Autofilter arrows 04-28-2011, 11:11 AM
  1. #1
    Registered User
    Join Date
    04-04-2011
    Location
    London
    MS-Off Ver
    Excel 2000
    Posts
    14

    Hiding Autofilter arrows

    I have a sheet which I need to filter by several criteria, easily achieved by using:

    Sub AutoFilter_in_Excel()
           Range("B11").AutoFilter Field:=8, Criteria1:="XYZ"
           Range("b11").AutoFilter Field:=10, Criteria1:=""
           
       End Sub
    to show all cases assigned to XYZ which have not been completed (this would be in column K as a "Y"). I have found the following which would hide the autofilter arrows in the columns I'm referrring to:

    Sub AutoFilter_in_Excel()
           Range("B11").AutoFilter Field:=8, Criteria1:="XYZ", VisibleDropDown:=False
           Range("b11").AutoFilter Field:=10, Criteria1:="", VisibleDropDown:=False
           
       End Sub
    How do I use that same "VisibleDropDown:=False" instruction to get rid of the dropdown arrow in all columns?

    Many thanks,

    Rob
    Last edited by romperstomper; 04-28-2011 at 10:41 AM. Reason: code tags

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