Save As Filename (Macro)
Posted by Will on March 04, 2002 10:18 AM
I am in the process of recording a macro and would like at the very end for the Save As dialogue box to pop up and allow the user to enter a file name. I pasted the portion of the macro I would like to change below. If anyone knows how I could get rid of the current path and allow the user to create their own every time they the macro is run I would be greatly appreciative.
Thanks
Will
'
Workbooks.Open FileName:="C:\findatup\EXCEL.CSV"
ActiveWorkbook.SaveAs FileName:="C:\findatup\test_change.csv", FileFormat:= _
xlCSV, CreateBackup:=False
ActiveWindow.Close
End Sub