Loop through every other column

raeannb

Board Regular
Joined
Jun 21, 2011
Messages
86
Hi! I have a spreadsheet with alternating columns of ID#s and dates, and a heading column with a date for comparison. What I'd like to do is loop through these columns and have any cell with a date that is 1 month or more older than the comparison date turn red. The dates start in the third column, and the comparison date is in cell A5. The last column with a date in it is column S (or the 19th column). The total number of rows is x, and the dates start in the 5th row. Here's what I've tried:

For j = 1 To 17

j = j * 2 + 1

For i = 1 To x

If IsEmpty(Cells(i + 4, j)) = False Then
If Range("A5") - Cells(i + 4, j) > 31 Then
Cells(i + 4, j).Interior.ColorIndex = 3
End If
End If

Next i
Next j

I hoped that first equation (j*2+1) would catch all the odd columns between 3 and 19, but so far it's only checking columns 3 and 9 and ignoring all the other odds. Why is that? Is there a better way to do this?

Thank you!!
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Code:
For j = 3 To 19 Step 2
would be simpler.
 
Upvote 0

Forum statistics

Threads
1,223,893
Messages
6,175,246
Members
452,623
Latest member
cliftonhandyman

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top