Hi everyone!

I'm trying to save an Excel file as CSV so that the end result would have double quotes " " around each data.
I've tried by adding a double quote within a double quote around each cell (""""content"""") in the Excel sheet, which returns the content in this fashion -> "content".
However when I save the file as CSV, the content looks like this -> """content""".. it has two more double quotes on each sides.

Is there anyway to have only one double quote on each side?

Also, here are the conditions that have to be met to achieve this:
1. No VBA/Macro
2. No other format (such as txt). Has to be saved exactly as CSV
3. I'm using formulas for each cell, so changing the format type as "Text" or any other format that bypasses the formula is a no-go.

Hopefully someone can help.
Thanks!