Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Is there a way in office 2000 to sort rows by color? I'm not good with code
and cutting and pasting over 1000 rows is becoming tiresome. Thanks |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Text color or background color?
Use a UDF - copy and paste this into a codemodule: Function BGColor(myR As Range) As Integer BGColor = myR.Interior.ColorIndex End Function Function FColor(myR As Range) As Integer FColor = myR.Font.ColorIndex End Function Then use them like so =BGColor(A2) =FColor(A2) depending on whether you want BackGroundColor or FontColor. Copy the formula down to match your cells, then sort based on that column. HTH, Bernie MS Excel MVP "Chris" wrote in message ... Is there a way in office 2000 to sort rows by color? I'm not good with code and cutting and pasting over 1000 rows is becoming tiresome. Thanks |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Chris,
Excel 2007 added this capability. For earlier versions, see http://www.cpearson.com/excel/SortByColor.htm for example code to do this. -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting www.cpearson.com (email on the web site) "Chris" wrote in message ... Is there a way in office 2000 to sort rows by color? I'm not good with code and cutting and pasting over 1000 rows is becoming tiresome. Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I sort rows by color? | Excel Discussion (Misc queries) | |||
How do I sort my data by color? (color applied to rows) | Excel Worksheet Functions | |||
In Excel it would help a lot to be able to sort rows by color | Excel Discussion (Misc queries) | |||
Excel sort by Fill Color by custom list sort | Excel Discussion (Misc queries) | |||
Can Excel sort rows by color? | Excel Discussion (Misc queries) |