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.
Dim r As Range, rng As Range, lRow as Long, i As Integer
Set rng = Sheet2.Cells(2, 1)
Set rng = Sheet2.Ranger(rng, rng.End(xlDown))
lRow = 2
For Each r in rng
For i = 1 to 5
Sheet1.Cells(lRow, 1).value = r.value
lRow = lRow + 1
NEXT
Next