I am using an Excel 2007 XLSM workbook tempate to grab some data and by running of a macro save as a csv file to a server location ready to be imported
Ideal when saving the csv file I want to add the date extension so instead of FX_Rates.csv I want FX_Rates_20130507.csv for example for 7th May 2013
How can I do this? At the moment my macro says:
ActiveWorkbook.SaveAs Filename:= _
"\\Wcrwvsqlprd07\salmonapplication$\Arqiva_Salmon\Import\Bloomberg\FX Rates\Fx data.csv", FileFormat:=xlCSV, _
CreateBackup:=False
Ideal when saving the csv file I want to add the date extension so instead of FX_Rates.csv I want FX_Rates_20130507.csv for example for 7th May 2013
How can I do this? At the moment my macro says:
ActiveWorkbook.SaveAs Filename:= _
"\\Wcrwvsqlprd07\salmonapplication$\Arqiva_Salmon\Import\Bloomberg\FX Rates\Fx data.csv", FileFormat:=xlCSV, _
CreateBackup:=False