Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a Excel 2007 macro-enabled template (.XLTM) which I use regularly.
Whenever I open this template then use save or save as to create a new file the default workbook type of .XLSX is selected instead of .XLSM. How can I change the default behaviour for this template to automatically select a .XLSM format in the "Save As" dialog wihtout changing it for every document as happens by using the 'Excel OptionsSaveSave Files in this Format' drop down box. Cheers |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Perhaps some code in ThisWorkbook module of the Template;
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean) Dim strSaveAs As String If SaveAsUI = True And Me.FileFormat = xlTemplate Then Cancel = True Application.EnableEvents = False 'Not sure of FileFilter strSaveAs = Application.GetSaveAsFilename _ (FileFilter:="Excel Macro-Enabled Workbook(*.xlsm) *.xlsm") Me.SaveAs strSaveAs Application.EnableEvents = True End If End Sub -- Regards Dave Hawley www.ozgrid.com "NZCoyote" wrote in message ... I have a Excel 2007 macro-enabled template (.XLTM) which I use regularly. Whenever I open this template then use save or save as to create a new file the default workbook type of .XLSX is selected instead of .XLSM. How can I change the default behaviour for this template to automatically select a .XLSM format in the "Save As" dialog wihtout changing it for every document as happens by using the 'Excel OptionsSaveSave Files in this Format' drop down box. Cheers |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
XLSM File Will Not Save Macros in Quick Access Toolbar | Excel Discussion (Misc queries) | |||
excel 2003 file converted to .xlsm file when save to network drive | Excel Discussion (Misc queries) | |||
Default a workbook to save as a xlsm (macro-enabled) in 2007 | Excel Discussion (Misc queries) | |||
default save as file type does not work | Excel Discussion (Misc queries) | |||
How do I change file/open/"files of type" to default to "all file. | Excel Discussion (Misc queries) |