R
RayD
Sub findandcopy()
Sheets("Sheet2").Range("2:2000").Clear
Sheets("Sheet2").Range("2:2000").RowHeight = 12.75
Columns("H").Find("x").EntireRow.Copy _
Sheets("sheet2").Range("a3")
End Sub
The above is complements of Don Guillett
Hello everyone
What I am trying to do here is get this macro to look in every cell in
sheet1 column "H5:H2000" and then find "any" number within that range
from (-1 to 46) if found, then copy the entire row of each instance to
sheet2. Any help or direction would be appreciated.
Thanks
Sheets("Sheet2").Range("2:2000").Clear
Sheets("Sheet2").Range("2:2000").RowHeight = 12.75
Columns("H").Find("x").EntireRow.Copy _
Sheets("sheet2").Range("a3")
End Sub
The above is complements of Don Guillett
Hello everyone
What I am trying to do here is get this macro to look in every cell in
sheet1 column "H5:H2000" and then find "any" number within that range
from (-1 to 46) if found, then copy the entire row of each instance to
sheet2. Any help or direction would be appreciated.
Thanks