P
puiuluipui
Hi, i have this line of code that copy 6 cells to the right. Can this be
modified to copy the cell before those 6 cells too?
dlr = Sheets("Search").Cells(Rows.Count, "a").End(xlUp).Row + 1
c.resize(, 7).Copy Sheets("Search").Cells(dlr, "a")
Sheets("search").Cells(dlr, "g") = Worksheets(sh).Name
The word this macro is searching for is in B and this is why copied range is
B:G
This code copy from range B:G.
Can this code be made to copy from range A:G?
Thanks!!
modified to copy the cell before those 6 cells too?
dlr = Sheets("Search").Cells(Rows.Count, "a").End(xlUp).Row + 1
c.resize(, 7).Copy Sheets("Search").Cells(dlr, "a")
Sheets("search").Cells(dlr, "g") = Worksheets(sh).Name
The word this macro is searching for is in B and this is why copied range is
B:G
This code copy from range B:G.
Can this code be made to copy from range A:G?
Thanks!!