dwg83
Board Regular
- Joined
- Nov 8, 2006
- Messages
- 174
I need to save a workbook as a .csv file while naming it with a ".mt1" ending. Currently the workbook saves, but not as comma seperated values. Additionally, when I get that to work, I'd like to not show the warning that says "TEST.mt1 may contain features that are not compatable...." I'd like to just automatically choose "yes". Thoughts???
This is what I have
Thanks
This is what I have
Code:
fName = Application.GetSaveAsFilename(InitialFileName:=".mt1", FileFilter:="CSV (Comma delimited) (*.csv), *.csv", Title:="Save As")
ActiveWorkbook.SaveAs Filename:=fName
Thanks