Hey All Thanks for your help in advance,
My Issue:
This code works fine but my main question/issue is the difference to when you manually save a .CSV (MS-DOS) File you are prompted with the following message " .csv may contain features that are not compatible with CSV (MS-DOS). Do you want to keep the workbook in this Format?" When you click Yes the .csv file is saved and all of the columns are kept. When you save automatically with the macro below, it saves all to Column A with the Comma demilited style. I'm wondering how to keep all of the information in the columns in VBA, as it saves when you Manually save it and go through the Prompt Message. I have been stumped on this for weeks and would GREATLY appreciate anyone's advice.
Code:
ActiveWorkbook.SaveAs Filename:= _
"C:\Users\jonathan.trier\Desktop\Destination Folder Adobe\" & "Adobe_CLC 5.0_North America_USD_" & Format(Date1, "YYYY_MM") & " CSV" & ".csv", FileFormat:= _
xlCSVMSDOS, Password:="", WriteResPassword:="", ReadOnlyRecommended:=False _
, CreateBackup:=False
Thanks all,
Jon
My Issue:
This code works fine but my main question/issue is the difference to when you manually save a .CSV (MS-DOS) File you are prompted with the following message " .csv may contain features that are not compatible with CSV (MS-DOS). Do you want to keep the workbook in this Format?" When you click Yes the .csv file is saved and all of the columns are kept. When you save automatically with the macro below, it saves all to Column A with the Comma demilited style. I'm wondering how to keep all of the information in the columns in VBA, as it saves when you Manually save it and go through the Prompt Message. I have been stumped on this for weeks and would GREATLY appreciate anyone's advice.
Code:
ActiveWorkbook.SaveAs Filename:= _
"C:\Users\jonathan.trier\Desktop\Destination Folder Adobe\" & "Adobe_CLC 5.0_North America_USD_" & Format(Date1, "YYYY_MM") & " CSV" & ".csv", FileFormat:= _
xlCSVMSDOS, Password:="", WriteResPassword:="", ReadOnlyRecommended:=False _
, CreateBackup:=False
Thanks all,
Jon