I need to create a csv file which is delimited with a comma., and is opened by excel
BUT
On in some cases a field also includes a comma.
Output line eg
aaaaa,bbbbbb,111
i need excel to combine bbbbb,1111 ie not to split it when i open the csv file.
I gather there is some way of using double quotes ????
vba.........?????????
r="bbbbbb,111"
r= replace(r,",","","")
Outline="aaaa" & "," & r
?? something like this
Really appreciate some help
Regards Robert
BUT
On in some cases a field also includes a comma.
Output line eg
aaaaa,bbbbbb,111
i need excel to combine bbbbb,1111 ie not to split it when i open the csv file.
I gather there is some way of using double quotes ????
vba.........?????????
r="bbbbbb,111"
r= replace(r,",","","")
Outline="aaaa" & "," & r
?? something like this
Really appreciate some help
Regards Robert