fill EOR

MR3

Board Regular
Joined
Jun 10, 2008
Messages
175
I need to fill every other row gray starting with row 2.
then every other row starting with row 3 light green.

but from columns a to z i am trying to put this in my macro but for all rows filled but not blank rows. blank rows only exist underneath the last row that contains actual data
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Does this macro do what you want?
Code:
Sub AlternateColorFilledRows()
  Dim X As Long, LastRow As Long
  LastRow = Cells(Rows.Count, "A").End(xlUp).Row
  Range("A2:Z" & LastRow).Interior.ColorIndex = 15
  For X = 3 To LastRow Step 2
    Cells(X, "A").Resize(, 26).Interior.ColorIndex = 35
  Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,518
Messages
6,179,256
Members
452,901
Latest member
LisaGo

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