Save to CSV with VBA problem

Cameraman84

New Member
Joined
Dec 3, 2021
Messages
4
Office Version
  1. 2013
Platform
  1. Windows
Hello to everyone

I have a small problem...When I save my xlsm page in CSV UTF-8 with simple way File --> Save As --> .... the file is saved correctly and works normally.

΅When I save with this VBA code:

Application.DisplayAlerts = False
Sheets("SYSTEM (CSV)").SaveAs Filename:=ThisWorkbook.Path & "\CSV UTF-8 - SYSTEM.csv", FileFormat:=xlCSVUTF8, CreateBackup:=False

The file don't work normally.

When i open the files with text editor, the differences is that when i save with VBA, every row take first the symbol " and then crash in the program....any idea please?

I give you a piece from texts file to see the differences


Saved with simple way and works normally.
No,Name,Surname,Position,Exact Position,Nationality,Date of Birth,Age,Height (cm),Height (m),Weight,Foot,T-shirt,Instagram,Total GK,Total DF,Total MF,Total FW,Players GR,Total L. Foot,Total R. Foot
STARTING 11

Saved with VBA and don't works normally.
"No,Name,Surname,Position,Exact Position,Nationality,Date of Birth,Age,Height (cm),Height (m),Weight,Foot,T-shirt,Instagram,Total GK,Total DF,Total MF,Total FW,Players GR,Total L. Foot,Total R. Foot"
STARTING 11


Thanks for all
John K.
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
use: FileFormat:=xlCSV
works just fine.

but your data may all exist in 1 cell.
 
Upvote 0

Forum statistics

Threads
1,213,533
Messages
6,114,179
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top