I need to remove fill from multiple every other rows.
To create the rows I used this routine I found on the Internet at http://www.ozgrid.com:
Sub insertEveryOtherRow()
Do While Selection “”
Selection.EntireRow.Insert
Selection.Offset(3, 0).Select
Loop
End Sub
In hindsight I should have have had something to stop the formatting of the previous row being copied into the inserted row. However it’s a bit late for that now and in any event beyond my competence.
Perhaps a kind Lounger would offer me assistance that would be most gratefully received.
Malcolm