Sort by Format?

  • Thread starter Thread starter data_gnome
  • Start date Start date
D

data_gnome

Hi all!
I received a sheet with a listing of clients, serviced by tw
locations.
One location's clients are typed in ALL CAPS while the other is not bu
is in *bold* type.

Is it possible to sort the list by one or the other formats?

Thanks
Al Davis
:cool
 
I received a sheet with a listing ...
Is it possible to sort the list by one or the other formats?

Don't think so. You could add a column for "Bold/Caps", then run a macro
such as

For Each Cell In Selection
If Cell.Font.Bold = True Then
Cell.Offset(0, 1) = "Bold"
Else
Cell.Offset(0, 1) = "Caps"
End If
Next Cell

And then sort by the added column.

HTH,
Andy
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top