To all
I have a macro which read/process data from a worksheet and write it to a csv file. I have noticed that using the command
to write the data whenever i have a string (say aaa) I get "aaa" .
Is there a way of not having the double quote around each string? If the cell contains a number it 's ok
Thanks in advance
John
I have a macro which read/process data from a worksheet and write it to a csv file. I have noticed that using the command
VBA Code:
Write #1, cell2.Value
Is there a way of not having the double quote around each string? If the cell contains a number it 's ok
Thanks in advance
John