I'm very near a solution for formatting a range of cells in a worksheet created from Access
This colours alternate rows but does the entire rows, not just the parts in the specified range.
Code:
Dim LR As Long, i As Long
'Find the last filled row in column A
LR = Range("A" & Rows.Count).End(xlUp).Row
'Loop through the filled rows in steps of 2
For i = 2 To LR Step 2
Rows(i).EntireRow.Interior.ColorIndex = 15
Next i
How do I limit to the columns in the range?