in my codes, I use Replace to check for ',' and replace it with ';'.
something like this,
strLine = strLine & Replace(Item,",",";") & ","
where Item is the record from the recordset.
strLine is then added to CSV file by Scripting.FileSystemObject's WriteLine.
|