Save as CSV with quotes only in non blank cells

Little_Anj

New Member
Joined
Jul 4, 2011
Messages
3
I am trying to run a macro to save a sheet in a book as a csv file with quotation marks only around non blank cells.

Not every row or column contains data that needs "marks".

For example, A1 is blank, B1 is not, C1 is not.
Then A2 is not, B2 is not and C2 is blank

SO the formatting I need is
,"B1","C1"
"a2","B2",

However I am getting
"","B1","C1"
"A2","B2",""

Basically I am trying to have an excel workbook that formats and saves as a csv (to import into another program) and forgoes the need to save in open office...

I can post the macro if needed, but I did not write it.

Thanks
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Hi Little_Anj

If it is an option for you., it can be done opening the csv file and replacing the "" by nothing or without opening
using DOS maybe. With this you'll get the format you need

Hope this helps.
 
Upvote 0
Hi Cesar,

I was hoping to be able to do it within one spreadsheet.

I am setting it up for someone else to use (not very computer literate) and I am trying to set the whole thing up with just one click (button) macro's that format, convert & save etc.

Is it possible to only add quotation marks to cells with data? Or is there a manual way within excel to do it e.g. through using other sheets with if statements to add it or something similar?

If not, I can just go with open office :(

I am not sure if this is the original author of the code (as it has been used on a few web pages), but this is what I am currently using.

http://www.markinns.com/articles/full/export_excel_csvs_with_double_quotes

Thanks
 
Upvote 0
If it is an option for you., it can be done opening the csv file and replacing the "" by nothing or without opening
using DOS maybe.
Be careful if you decide to do this as this will remove any double quotes embedded in a string, as these are doubled up when written to a CSV file.

For example, if you write this to a CSV file:-
Code:
I said "Hello" to Mary.
you will get:-
Code:
"I said ""Hello"" to Mary."
If you merely replaced "" with nothing, that would change the actual data - it would be reimported as:-
Code:
I said Hello to Mary.
 
Last edited:
Upvote 0
Upvote 0
You're right Ruddles, the idea actually was replace ,"" or "", with only ,.

But the adaptations always depends the structure data may have.

With your adaptation to the code should work, but I've trying with that and others
things for some reason, without success so far. I hope it works Little_Anj.

Regards
 
Upvote 0
the idea actually was replace ,"" or "", with only ,
That still makes me nervous in case there's genuinely "", in the actual data.

This in the worksheet:-
Code:
I said "Hello", but he ignored me.
would become this in the CSV:-
Code:
"I said ""Hello[B][COLOR=red]"",[/COLOR][/B] but he ignored me."
then it gets edited to:-
Code:
"I said ""Hello but he ignored me."
and it's reimported as:-
Code:
I said "Hello but he ignored me.

With your adaptation to the code should work, but I've trying with that and others things for some reason, without success so far.
Odd... I just tried it and it works fine. In what way does it not work for you?
 
Upvote 0
Odd... I just tried it and it works fine. In what way does it not work for you?
I have this in a CSV file (Users.csv):
Excel Workbook
ABC
1UserDeviceUser
2CarlDesktopAdmin
3MaryLaptop
4JaneJane123
Users_Table

When I run the code from another workbook, the macro runs without errors but when has finished,
I open the Users.csv and the content has been deleted. From what I see, it looks this happens
because of this line:

Code:
Open FName For Output As #1
Regards
 
Upvote 0
So... is Users.csv your input file? And you specify the same filename as your output file?

Try it with your source data and code in an Excel workbook and export it to a new CSV file.
 
Upvote 0
That's right Ruddles, that´s was where I was wrong, I had not understood how is worked.

Now I get the correct result. Thanks!!!.

Best regards
 
Upvote 0

Forum statistics

Threads
1,215,771
Messages
6,126,798
Members
449,337
Latest member
BBV123

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