It doesn't have anything to do with the message box. You would test if the File Name returned from .GetSaveAsFilename prompt equals False to determine if they canceled that prompt.
This site has some good code examples
Use VBA SaveAs
Private Sub CommandButton1_Click()
Dim fname As Variant
Dim FileFormatValue As Long
If MsgBox("Do you wish to save as a new file?", vbYesNo, "Save As Option") = vbYes Then
'Give the user the choice to save in 2000-2003 format or in one of the
'new formats. Use the "Save as type" dropdown to make a choice,Default =
'Excel Macro Enabled Workbook. You can add or remove formats to/from the list
fname = Application.GetSaveAsFilename(InitialFileName:="", filefilter:= _
" Excel Macro Free Workbook (*.xlsx), *.xlsx," & _
" Excel Macro Enabled Workbook (*.xlsm), *.xlsm," & _
" Excel 2000-2003 Workbook (*.xls), *.xls," & _
" Excel Binary Workbook (*.xlsb), *.xlsb", _
FilterIndex:=2, Title:="Save File As...")
If fname <> False Then
'Find the correct FileFormat that match the choice in the "Save as type" list
Select Case LCase(Right(fname, Len(fname) - InStrRev(fname, ".", , 1)))
Case "xls": FileFormatValue = 56
Case "xlsx": FileFormatValue = 51
Case "xlsm": FileFormatValue = 52
Case "xlsb": FileFormatValue = 50
Case Else: FileFormatValue = 0
End Select
'Save the file with the xlFileFormat parameter
'value that match the file extension
If FileFormatValue = 0 Then
MsgBox "Sorry, unknown file extension"
Else
'Save the file in the format you choose in the "Save as type" dropdown
ActiveWorkbook.SaveAs fname, FileFormat:=FileFormatValue, CreateBackup:=False
'ActiveWorkbook.Close False
End If
End If
End If
End Sub
Bookmarks