How can I save a workbook as text document with "," in numbers (not talking about the "," between entries as in CSV formats). I have a xls-list with entries like "0,5", and I get "0.5" after exporting and opening with an text editor. Right now I do
ActiveWorkbook.SaveAs Filename:="C:\temp\Hello.asc", _
FileFormat:=xlText, CreateBackup:=False
If I do save the workbook manually by "save as" ".txt tab deliminated", I finally get my "0,5"... So it only doesn't work by saving it with VBA.
ActiveWorkbook.SaveAs Filename:="C:\temp\Hello.asc", _
FileFormat:=xlText, CreateBackup:=False
If I do save the workbook manually by "save as" ".txt tab deliminated", I finally get my "0,5"... So it only doesn't work by saving it with VBA.