View Single Post
  #2   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.programming
...Patrick[_5_] ...Patrick[_5_] is offline
external usenet poster
 
Posts: 18
Default can I sort colored cells?

Yes !
with this code (paste in a module VBA)

Function MyColor(CkCell As Object)
Application.Volatile True
MyColor = Abs(CkCell.Interior.ColorIndex) ' not for the conditionnal color
!!!
End Function

In a différent colum, you type = mycolor(A1)
and you sort by this nex column

Bye


--
....Patrick
Quoi que vous fassiez, faites le bien .
Mail: http://cerbermail.com/?KPW0tTCjFw
Connectez vous sur ce forum par :
news://msnews.microsoft.com/microsoft.public.fr.excel

"Jack" a écrit dans le message de
...
Hi,
Can I sort a column that some cells are colored "red" and and some

"yellow"
in the nearby columns seperately via VBA?. Please provide a sample code

that
does the job. Thank you for your time.
JACK