Add code to paste data to next available row
You change the B to a G and lost a double quote.
from
Range(cell, Cells(cell.Row, "g)).Copy sh.Cells(NewRow, 1)
to
Range(cell, Cells(cell.Row, "g")).Copy sh.Cells(NewRow, 1)
PS: I've been eating white castle for 50 years. I can eat a lot of those
small burgers.
"J.W. Aldridge" wrote:
Keep getting error with this part.....
Range(cell, Cells(cell.Row, "g)).Copy sh.Cells(NewRow, 1)
|