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 sSendTo As String
Application.ScreenUpdating = False
sPath = ActiveWorkbook.Path
sWorkbookName = sPath & "\" & "S" & Month(Now()) & Day(Now()) & Hour(Now()) & Minute(Now()) & Second(Now()) & ".xls"
ActiveWorkbook.SaveAs FileName:=sWorkbookName
sSendTo = Range("SendTo")
Sheets("Parameters").Activate
Range("SendTo").Copy
With Application.Dialogs(xlDialogSendMail)
.Show sSendTo, "Survey"
End With