I am generating a CSV file from Excel (2013) like this:
.SaveAs Filename:= _
filePath & MyFileName, _
FileFormat:=xlCSV, _
Local:=True, _
That works fine but at the last row I get semicolon in the end as well:
994085;None ApS.;2;G; 12 ;31-12-2015; 40 ; - ;Operational TB ;
How can I remove the last ; in that file?
I saw it is easy in a string. I am not sure I can put the whole file into string. It is around 6-700K characters. It has to go pretty fast no matter what I implement
Any ideas appreciated!