View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default Color every other row

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.
--
Gary''s Student - gsnu200735


"M&M" wrote:

How can i Color every other row in grey, in a dynamic range?

Any help/ideas greatly appreciated