G
Guest
Guest
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:findatupEXCEL.CSV"
ActiveWorkbook.SaveAs FileName:="C:findatuptest_change.csv", FileFormat:= _
xlCSV, CreateBackup:=False
ActiveWindow.Close
End Sub
Thanks
Will
'
Workbooks.Open FileName:="C:findatupEXCEL.CSV"
ActiveWorkbook.SaveAs FileName:="C:findatuptest_change.csv", FileFormat:= _
xlCSV, CreateBackup:=False
ActiveWindow.Close
End Sub