Does anyone knows idea of my below problem in VBA excel
Macro needs to check 5 cells(Continues) in a 1 row.. Totally more than 500 rows are there ..if anyone cell color in a row has color “red” means it has to mention “new” in some column ..
Any idea or solution.. ??
i use the below code , to check any cell in single(or selected) column has red ...
Does anyone knows idea of my below problem in VBA excel
Macro needs to check 5 cells(Continues) in a 1 row.. Totally more than 500 rows are there ..if anyone cell color in a row has color “red” means it has to mention “new” in some column ..
Any idea or solution.. ??
i use the below code for to check any cell in single has red ...
Sub test()
Dim erange as range
for each erange in selection
if erange.interior.color = red then
Erange.offset(0,1)="New"
end if
next erange
end if