Hello,
simple one
if color of any cell in range lastRow col A, columns A:P is not white than color every white cells in this row in this range to RGB(157,157,157).
I'd like to color every white cell from column A to column P to grey but do not touch red colored cells only if red cell(s) is(are) found..
for every cell in range
if any cell in range <> rgb(255,255,255) than
for every cell = rgb(255,255,255) in range
Cells(?,?).Interior.Color = RGB(157, 157, 157)
something like that..
Best regards
W.
simple one
if color of any cell in range lastRow col A, columns A:P is not white than color every white cells in this row in this range to RGB(157,157,157).
I'd like to color every white cell from column A to column P to grey but do not touch red colored cells only if red cell(s) is(are) found..
for every cell in range
if any cell in range <> rgb(255,255,255) than
for every cell = rgb(255,255,255) in range
Cells(?,?).Interior.Color = RGB(157, 157, 157)
something like that..
Best regards
W.