Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub Macro1()
Dim LastRow As Integer
LastRow = Sheet2.Range("A1").End(xlDown).Row
Sheet1.Range("a4:j4").Copy Destination:= _
Sheet2.Range("A" & LastRow + 1)
End Sub