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.
Range("A1:D20").Copy
Dim R as Integer
For R = 1 to 19
ActiveSheet.Rows(R).Copy destination:=ActiveSheet.Rows(20)
ActiveSheet.Range("G20").Formula = "=D20"
ActiveSheet.Rows(20).Copy destination:=ActiveSheet.Rows(R)
Next
Range("A20").EntireRow.Copy Destination:=Range("MyRange")