+ Reply to Thread
Results 1 to 2 of 2

Arrow color on Autofilter

  1. #1
    moi
    Guest

    Arrow color on Autofilter

    I use autofilters a lot in Excel at work. It is hard to distinguish the blue
    arrows from the black when I filter a column. It would be easier to read if
    the arrow turned white instead.

    ----------------
    This post is a suggestion for Microsoft, and Microsoft responds to the
    suggestions with the most votes. To vote for this suggestion, click the "I
    Agree" button in the message pane. If you do not see the button, follow this
    link to open the suggestion in the Microsoft Web-based Newsreader and then
    click "I Agree" in the message pane.

    http://www.microsoft.com/office/comm...heet.functions

  2. #2
    Elkar
    Guest

    RE: Arrow color on Autofilter

    I completely agree. I'm always using Autofilters and was wishing the same
    thing. I found a solution that doesn't change the color, but definately
    helps. If you don't mind adding a little code to your spreadsheet, try this:

    Instert a new module and add this code:

    Function FilterCriteria(Rng As Range) As String
    Dim Filter As String
    Filter = ""
    On Error GoTo Finish
    With Rng.Parent.AutoFilter
    If Intersect(Rng, .Range) Is Nothing Then GoTo Finish
    With .Filters(Rng.Column - .Range.Column + 1)
    If Not .On Then GoTo Finish
    Filter = .Criteria1
    Select Case .Operator
    Case xlAnd
    Filter = Filter & " AND " & .Criteria2
    Case xlOr
    Filter = Filter & " OR " & .Criteria2
    End Select
    End With
    End With
    Finish:
    FilterCriteria = Filter
    End Function

    Then, back on your spreadsheet, add a new row above your Autofilter row.
    Use the following formula in each cell above any filters:

    =IF(filtercriteria(A4)="","(none)",filtercriteria(A4))

    Cell A4 would refer to the first cell containing data in that column.

    HTH,
    Elkar

    "moi" wrote:

    > I use autofilters a lot in Excel at work. It is hard to distinguish the blue
    > arrows from the black when I filter a column. It would be easier to read if
    > the arrow turned white instead.
    >
    > ----------------
    > This post is a suggestion for Microsoft, and Microsoft responds to the
    > suggestions with the most votes. To vote for this suggestion, click the "I
    > Agree" button in the message pane. If you do not see the button, follow this
    > link to open the suggestion in the Microsoft Web-based Newsreader and then
    > click "I Agree" in the message pane.
    >
    > http://www.microsoft.com/office/comm...heet.functions


+ 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