I don't know that we can make any suggestions without seeing the VBA code you are using. If I guess at the problem, you are probably not using enough quotation marks in your code. Since quotation marks are used to indicate string variables, in order to include quotation marks as part of a string, you must often nest the quotation marks within other quotation marks. For example:
When I execute this code, text1 contains the text string 11.12, where text2 contains the text string "11.12". I suspect that you need to do something similar with your VBA code -- nest the quotation marks within more quotation marks so that VBA will know to include a set of quotation in the string written to the .csv file.
Bookmarks