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

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
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,223,711
Messages
6,174,025
Members
452,542
Latest member
Bricklin

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