View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default sort column A with "strike-through" values come first

can you use a helper column?

You could create a UDF

Public Function IsStrikeThrough(rng As Range)
Application.Volatile
IsStrikeThrough = rng.Font.Strikethrough
End Function

Use this in an adjacent column and use that as the first sort key.

--
Regards,
Tom Ogilvy




"William Poh Ben" wrote in
message ...

Hi EXCEL expert,

I have this problem I have been facing for a long time at work not able
to sort the data in column A in order to have the cells containing the
"strike-through" values in column A appear first, follow by the values
without the "strike-through".

My column A consists of Part Numbers and the strike-through applies to
all letters/numbers in the cell, and not only certain letters/numbers.

Appreciate very much if someone can help me with a VBA code to solve
this problem

Thanks in advance !


------------------------------------------------
~~ Message posted from http://www.ExcelTip.com/
~~View and post usenet messages directly from http://www.ExcelForum.com/