R
RayD
Hello,
I had help earlier this morning with this macro, it is working well
now, but I was wondering if it is possible to incorporate a function
that when first running the macro it will clear/delete Sheet2 "ROWS"
starting row 2 through row 2000, also returning the row height to it
default, column width is OK. Than complete the task. -Many Thanks
Sub Macro1()
For Each c In [H5:H2000]
x = Sheets("sheet2").Cells(65536, 1).End(xlUp).Row + 1
If c.Interior.ColorIndex = 3 Then
c.EntireRow.Copy Sheets("sheet2").Cells(x, 1)
End If
Next
End Sub
I had help earlier this morning with this macro, it is working well
now, but I was wondering if it is possible to incorporate a function
that when first running the macro it will clear/delete Sheet2 "ROWS"
starting row 2 through row 2000, also returning the row height to it
default, column width is OK. Than complete the task. -Many Thanks
Sub Macro1()
For Each c In [H5:H2000]
x = Sheets("sheet2").Cells(65536, 1).End(xlUp).Row + 1
If c.Interior.ColorIndex = 3 Then
c.EntireRow.Copy Sheets("sheet2").Cells(x, 1)
End If
Next
End Sub