A tiny question about .CSV files

  • Thread starter Thread starter Adas Miauczynski
  • Start date Start date
A

Adas Miauczynski

Hi everybody,

I'm trying to upload my adress book to a web page that accepts .csv files.
The file I have looks something like this: SomeData;SomeData;
but the server I'm trying to upload it to wants me to give him data in
quotation marks. So my file should look like: "SomeData";"SomeData";
How can I add those quotation marks to all the entries?

Thanks in advance
 
Adas Miauczynski said:
Hi everybody,

I'm trying to upload my adress book to a web page that accepts .csv files.
The file I have looks something like this: SomeData;SomeData;
but the server I'm trying to upload it to wants me to give him data in
quotation marks. So my file should look like: "SomeData";"SomeData";
How can I add those quotation marks to all the entries?

Thanks in advance

You can use ms Access to do the export, it lets you specify any delimiter
you like and also to put quotes around each field.

or if not, I would write sometihng that will put the commas around each
field such as:
""""&A1&"""" for example.
 
or if not, I would write sometihng that will put the commas around each
field such as:
""""&A1&"""" for example.

Thanks a lot!!

___
AM
 

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