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 CopySheet()
Dim sName1 As String
Dim sName2 As String
Dim sShtName As String
sName1 = ActiveWorkbook.Name
sShtName = ActiveSheet.Name
Workbooks.Add
sName2 = ActiveWorkbook.Name
Windows(sName1).Activate
Sheets(sShtName).Select
Sheets(sShtName).Copy Before:=Workbooks(sName2).Sheets(1)
End Sub