Urgent ! CSV double quotation problem ?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear All,

I need to write a Marco to export some data from an excel file to a new
CSV file. Some data with double quotation mark will export to CSV file.

For example, I need to export a column name with "ABC", my code is

sheet1.cells(1,4).value = """ABC"""
.......
oWorkbook.save

If I open the CSV file by using Excel, the cell display "ABC", so it is
correct. But when I use notepad to open the CSV file. It displays """ABC""",
it is not my target format.

I would like to ask how can I change my code to display "ABC" (both Excel
and Notepad).

Thanks
 
kobeting,
Notepad merely displays the text it finds in a file. It has no concept of
..csv.
Excel attempts parsing of the structure. In this case .csv, with different
data types (number, text, etc) and splitting the data into columns on the
commas etc.

So the quick answer is you cannot.

NickHK
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top