How to save Excel doc to CSV with quotations around each item. E..

T

tnbanjoman

I need to save Excel 2003 docs to a CSV with quotations around each item.
E.g., "Doe", "John", "123121234"
 
R

RWN

Don't think you can without using VBA (but, believe me, I've been wrong before!).
It will, however, insert quotes where required i.e. if a cell has a field delimiter
(comma) in it.
ex Doe,John (in one cell) will be saved as "Doe,John"
vs. Doe John (in two cells) will be saved as Doe , John
 
Top