Someone went through a workbook and changed the font within cells (NOT the whole cell) to a different color. I need to capture all the text with a different font color (yellow). I can use this if i step through every character in every cell:
If cel.Characters(y, 1).Font.ColorIndex = 6 then
is there a way to tell if a cell contains a certain font color when it might contain more than one color (without looping through the entire text string)?
If cel.Characters(y, 1).Font.ColorIndex = 6 then
is there a way to tell if a cell contains a certain font color when it might contain more than one color (without looping through the entire text string)?