Hello again,
I have a macro that tries to save an imported RTF file to xls, with the date added to the end. Everything looks ok, but when I run it and click the SAVE button, it dosn't get saved in that location.
I've tried other locations, and get the same result ( I have admin access to the whole drive ).
Any ideas ?
Thanks in advance
Gerald
Sub SaveAsOption()
''''''' save file as XLS
Application.StatusBar = False
MyFile = Application.GetSaveAsFilename(InitialFileName:="C:\NewFile " _
& Format(Date, "yyyy_mm_dd"".xls"), _
fileFilter:="Excel Files (*.xls), *.xls")
End Sub
I have a macro that tries to save an imported RTF file to xls, with the date added to the end. Everything looks ok, but when I run it and click the SAVE button, it dosn't get saved in that location.
I've tried other locations, and get the same result ( I have admin access to the whole drive ).
Any ideas ?
Thanks in advance
Gerald
Sub SaveAsOption()
''''''' save file as XLS
Application.StatusBar = False
MyFile = Application.GetSaveAsFilename(InitialFileName:="C:\NewFile " _
& Format(Date, "yyyy_mm_dd"".xls"), _
fileFilter:="Excel Files (*.xls), *.xls")
End Sub