Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
moi
 
Posts: n/a
Default 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...et.f unctions
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Elkar
 
Posts: n/a
Default 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...et.f unctions

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can you change the colour of an Excel autofilter arrow?? Paula Setting up and Configuration of Excel 2 July 19th 06 10:05 AM
Autofilter: Better contrast colour on arrow on filtered data Paula Excel Discussion (Misc queries) 0 October 3rd 05 03:28 PM
Autofilter selected arrow color Jon Quixley Excel Worksheet Functions 1 August 2nd 05 11:56 AM
Excel to allow color setting for autofilter drop-down arrow patriceadsl Excel Discussion (Misc queries) 1 April 25th 05 01:16 PM
Change rollover color on autofilter arrow from blue to red afineline Excel Worksheet Functions 1 February 12th 05 03:30 AM


All times are GMT +1. The time now is 04:48 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"