View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default How can I tell excel to highlight every 4 rows?

One way
Sub HI()
For I = 1 To 21000 Step 4
Rows(I).Interior.ColorIndex = 6
Next I
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Amanda" wrote in message
...
I need to highlight every 4 rows in my spreadsheet. How do I do this? I
have 21000 rows to sort through. :(