Is there a way to export Excel to a csv file that wraps EVERY cell in ” and skips the headers? Save-as .csv is not the answer I am looking for.
I am looking for a way to do this from within excel if it is possible. Not a coding solution. Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Assuming you have your data in Sheet1, the best non-VBA solution I can think of is to add a second sheet and enter a formula in A1 like the following:
Then copy that down for as many rows as you have in Sheet1. You need to extend this formula for as many columns as you have as well.
This will give you a single column looking like the CSV file format you want. You would then save that page as a text file.