In a range of 10 cells i have 2 cells of red colors.
Like I can identify the blank cells using below
Dim rng As Range
Set rng = Range("A1:A10").SpecialCells(xlCellTypeBlanks)
rng.Select
Is there a way to identify cells of specific format (in this case cells with Red color)
as specialcells does not show any relevant option.
I want to identify these red cells in a range preferably without any loop.
Thanks for looking into it.