Range to CSV with quotes

Bushy3

New Member
Joined
Nov 10, 2024
Messages
2
Office Version
  1. 2021
Platform
  1. Windows
Seven years ago The SilkCode provided this function to generate CSV within a cell from a range (post 986894)

VBA Code:
Public Function RangeToCSV(targetRange As Range, Optional delimeter As String = ",") As String
Dim rowCounter As Long
Dim colCounter As Long
Dim targetArr() As Variant
Dim CSVStr As String
targetArr = targetRange
For rowCounter = 1 To UBound(targetArr, 1)
    For colCounter = 1 To UBound(targetArr, 2)
        CSVStr = CSVStr & IIf(CSVStr <> "", delimeter, "") & CStr(targetArr(rowCounter, colCounter))
    Next
Next
RangeToCSV = CSVStr
End Function

I would like to enclose each list item, in the output of the function, in quotes [ CHR(34) ].

It's not difficult to paste the output into a text editor and running a replace operation but if I can avoid that operation it would be much quicker.
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Try the following...

VBA Code:
        CSVStr = CSVStr & IIf(CSVStr <> "", delimeter, "") & Chr(34) & CStr(targetArr(rowCounter, colCounter) & Chr(34))

Hope this helps!
 
Upvote 0
Solution

Forum statistics

Threads
1,224,823
Messages
6,181,175
Members
453,021
Latest member
Justyna P

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top