Hi,
I have the following set of data in columns A and B with hundreds of rows (starting from row 2):
A B C D
1
1 test#1 yes
3 tes#2 yes
4 test#3 no
5 test#4 yes
…
The data would be initially be in columns A and B, with more data entered in pairs in other columns. In VBA , how do I:
1) Select Col A and B, and change the color in the range to red
2) Go to the first cell in the active range and offset by 3 columns, and check if there any data in activecell. If activecell is not empty then color it blue.
3) Repeat step 2, interchanging colors from green to red
Thanks.