Highlighting Only Cells with the letter "B"

K

koba

Hi Guys

How do i select/highlight Only Cells with the letter "B" so eventually
delete them

Merry Xmas

Thanks

Andrew
 
B

Barb Reinhardt

If you are looking for cells that contain "B" only, you could do it two
ways.

1) Use AutoFilter and filter for "B" in the column of interest
2) Use conditional formatting to highlight the cells that have "B" in them.
Select the cells you want to check, FORMAT -> Conditional Formatting -> Cell
value equals B
 
S

Steve Yandl

If you need any cell that contains "B" or "b" as part of a text string, you
could use conditional formatting, set for 'Formula Is"
=NOT(ISERROR(SEARCH("b",A1)))
(assuming the range being checked includes A1 as upper left cell)
and then be sure to click the format button and set the desired pattern or
whatever format you want to highlight cells with B.

Steve
 
Top