Hello Experts -
The following code copies and pastes data between workbook sheets. Can someone please modify so it pastes in the first empty row? It currently pastes in the 2nd row.
'Preciate everyone on this forum helping others
The following code copies and pastes data between workbook sheets. Can someone please modify so it pastes in the first empty row? It currently pastes in the 2nd row.
Code:
Set zDest1 = sht01.Cells(2, 1)
zSource.Sheets(4).[a1].CurrentRegion.Offset(2).Copy zDest1
Set zDest1 = sht01.Cells(Rows.Count, 1).End(xlUp).Offset(1)
'Preciate everyone on this forum helping others