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.
'@---------- Workbook Module ------------@
Private Sub Workbook_Open()
Call GetFileName
End Sub
'@-------------- Module 1 ---------------@
'Macros
Sub GetFileName()
Dim strTitle As String
strTitle = InputBox("Enter Workbook Name:", "Title", "")
If Len(strTitle) > 0 Then
ActiveWorkbook.SaveAs strTitle & ".xls"
End If
End Sub