2

Is it possible to filter an Excel column based on the format of the text, such as whether it's bold, italic or struck through?

1

2 Answers 2

2

Not exactly - you can only filter an Excel column based on its value, its cell colour, or its font colour.

However, using Find and Replace, you can replace all formatting of a certain type with a filterable version: e.g. replacing all struck through cells with cells with red text. You can then filter on this basis.

2
  • 1
    Also you can achieve it by using Excel macros (VBA)
    – Searush
    Commented May 19, 2014 at 11:11
  • @Searas - Absolutely. Commented May 19, 2014 at 11:24
0

Module solution for italics (adapted from here)

Function IsItalics(rCell As Range)
IsItalics = rCell.Font.Italic
End Function

Then, IsItalics(cell address)

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .