have an excel spreadsheet that I need to save as a CSV file to import into another application. For this other application, the values in the CSV file must be wrapped in quotes (which Excel does not do by default). So I need each row to look like this:
"value 1", "value 2", "value 3"
instead of
value 1, value 2, value 3
"value 1", "value 2", "value 3"
instead of
value 1, value 2, value 3