Cell Color Change

D

daphoenix

how would I Remove the fill color of every fourth row starting after the 4th
row.

thanks
 
D

Don Guillett

Try this. If you want row 4 also just change 8 to 4
Sub removecolorfromcellsinrow()
mc = "m"
For i = 8 To Cells(Rows.Count, mc).End(xlUp).Row Step 4
'MsgBox i
Cells(i, mc).Interior.ColorIndex = 0
Next i
End Sub
 
D

daphoenix

Thanks for the help again don,

the code that you gave me only changes the color in column M, how would I
apply this to the entire row.
 
D

Don Guillett

Cells(i, mc).Interior.ColorIndex = 0
to
Cells(i, mc).ENTIREROW.Interior.ColorIndex = 0
 
D

daphoenix

it works great thanks...but when running this the last row of the workbook is
still left filled in, is there a way to change this?
 
D

Don Guillett

Must not be a multiple of 4.
you could add the line just before end sub
rows(Cells(Rows.Count, mc).End(xlUp).Row ).Interior.ColorIndex = 0
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top