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.
with activesheet.usedrange
r1=.row
r2=r1+.rows.count-1
c1=.column
c2=c1+.columns.count-1
end with
for r = r1 to r2
range(cells(r, c1), cells(r, c2)).copy destination:=cells(r, c2+2)
next