I'd like to have a batch file which will convert my csv that is in format
value1,value2,value3
into
"value1","value2","value3"
I tried to do the same in Excel file directly (according to this answer https://stackoverflow.com/a/38728364) but when I'm saving the file I see in notepad that it is
"""value1""","""value2""","""value3"""
Only with vba script it worked but it is not convenient to use. So now I'm looking for some script that will handle this in faster way than opening an excel, selecting range and uploading VBA script to convert values. I found powershell script, but it is not valid in my case. I googled and found only how to remove the quotes, not how to add them :D
Do you have any other ideas how to achieve this in Excel directly or in batch file?