Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I need to know how to 'default' the save file type as an .xls from a .dat
within a macro. After a macro has completed changing many .dat files into excel spreadsheets to include subtotals, the file type is defaulted to .dat and when I go to save the file, I have to constantly change the file type from .dat to .xls. |
#2
![]() |
|||
|
|||
![]()
"Lois" wrote:
I need to know how to 'default' the save file type as an .xls from a .dat within a macro. After a macro has completed changing many .dat files into excel spreadsheets to include subtotals, the file type is defaulted to .dat and when I go to save the file, I have to constantly change the file type from .dat to .xls. Check the SaveAs method which allows you to specify the desired FileFormat e.g. ActiveWorkbook.SaveAs(test, fileFormat:=xlNormal) |
#3
![]() |
|||
|
|||
![]()
"bigwheel" wrote:
"Lois" wrote: I need to know how to 'default' the save file type as an .xls from a .dat within a macro. After a macro has completed changing many .dat files into excel spreadsheets to include subtotals, the file type is defaulted to .dat and when I go to save the file, I have to constantly change the file type from .dat to .xls. Check the SaveAs method which allows you to specify the desired FileFormat e.g. ActiveWorkbook.SaveAs(test, fileFormat:=xlNormal) Sorry, bit of an error with the syntax above ... Try ActiveWorkbook.SaveAs FileFormat:=xlNormal |
#4
![]() |
|||
|
|||
![]()
Thanks, but I'm still having trouble. I probably wasn't very clear before.
Here is the macro that we currently have and need to change to include 'changing the file type from .dat to .xls. before we save the file. Any help is appreciated!!! SendKeys "%fa~" ActiveSheet.Outline.ShowLevels Rowlevels:=4 Columns("B:E").Select Selection.EntireColumn.Hidden = True Columns("G:T").Select Selection.EntireColumn.Hidden = True ActiveSheet.PrintOut SendKeys "n~" ActiveWindow.Close End Sub "bigwheel" wrote: "bigwheel" wrote: "Lois" wrote: I need to know how to 'default' the save file type as an .xls from a .dat within a macro. After a macro has completed changing many .dat files into excel spreadsheets to include subtotals, the file type is defaulted to .dat and when I go to save the file, I have to constantly change the file type from .dat to .xls. Check the SaveAs method which allows you to specify the desired FileFormat e.g. ActiveWorkbook.SaveAs(test, fileFormat:=xlNormal) Sorry, bit of an error with the syntax above ... Try ActiveWorkbook.SaveAs FileFormat:=xlNormal |
#5
![]() |
|||
|
|||
![]()
OK see if this helps. Change ActiveWindow.Close to
a = ActiveWindow.Close(True,awName) Insert immediately above this, and all on one line, as follows:- awname = Left(ActiveWorkbook.Name, Application.WorksheetFunction.Find(".", ActiveWorkbook.Name) - 1) & ".xls" "Lois" wrote: Thanks, but I'm still having trouble. I probably wasn't very clear before. Here is the macro that we currently have and need to change to include 'changing the file type from .dat to .xls. before we save the file. Any help is appreciated!!! SendKeys "%fa~" ActiveSheet.Outline.ShowLevels Rowlevels:=4 Columns("B:E").Select Selection.EntireColumn.Hidden = True Columns("G:T").Select Selection.EntireColumn.Hidden = True ActiveSheet.PrintOut SendKeys "n~" ActiveWindow.Close End Sub "bigwheel" wrote: "bigwheel" wrote: "Lois" wrote: I need to know how to 'default' the save file type as an .xls from a .dat within a macro. After a macro has completed changing many .dat files into excel spreadsheets to include subtotals, the file type is defaulted to .dat and when I go to save the file, I have to constantly change the file type from .dat to .xls. Check the SaveAs method which allows you to specify the desired FileFormat e.g. ActiveWorkbook.SaveAs(test, fileFormat:=xlNormal) Sorry, bit of an error with the syntax above ... Try ActiveWorkbook.SaveAs FileFormat:=xlNormal |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro excel save | Excel Discussion (Misc queries) | |||
macro to save file automaticaly? | Excel Discussion (Misc queries) | |||
Save Macro - yet another question | Excel Discussion (Misc queries) | |||
How to stop getting the file save box when running a macro | Excel Discussion (Misc queries) | |||
Macro in Excel 2002 to save a workbook to a FTP location | Excel Discussion (Misc queries) |