G Guest Aug 2, 2007 #1 How can i Color every other row in grey, in a dynamic range? Any help/ideas greatly appreciated
G Guest Aug 2, 2007 #3 Sub everyother() For i = 1 To 100 Step 2 Cells(i, 1).EntireRow.Interior.ColorIndex = 48 Next End Sub adjust the limits to suit the range.
Sub everyother() For i = 1 To 100 Step 2 Cells(i, 1).EntireRow.Interior.ColorIndex = 48 Next End Sub adjust the limits to suit the range.