'@---------- 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