Couple of questions
- Is Application.Filedialog(msoFileDialogSaveAs) support in Mac excel 2011 vba?
- Difference between Application.Filedialog(msoFileDialogSaveAs) and Application.Dialogs(xlDialogSaveAs)?
Couple of questions
I've just answered this question and your question here was referenced.
To also support your questions: -
Is Application.Filedialog(msoFileDialogSaveAs) support in Mac excel 2011 vba?
No it is not, however there is a built in function in Mac VBA called MacScript
, which you pass applescript through to get a value back, see my previously linked thread for more detail on this.
Difference between Application.Filedialog(msoFileDialogSaveAs) and Application.Dialogs(xlDialogSaveAs)?
Application.Filedialog gives access to four file dialog style boxes: -
Application.Dialogs gives access to all built in dialogs available in Excel, one of which is the 'SaveAs' dialog.