Hi,
I have a code to copy and paste values till first empty row but then I want vba to copy and paste values after that till it find second empty row. So For first I did
Lastrow = Cells.Find(What:="*", After:=[A20], SearchOrder:=xlByRows).Row
Range("A1:H" & Lastrow - 1).Offset(19, 0).Copy...