Is there a way using the write command to add text to file without it adding the quotes.

My Sample code would be like this:

Dim test1, test2, test3 As String
test1 = "Hello"
test2 = "world"
test3 = "Goodbye"
Open App.Path & "\CrossRef.htm" For Output As #1
Write #1, test1, test2, test3
Close #1

And the output looks like this
"Hello","world","Cool"

Is there any good info out there on writing to text files, that might help me with this. Thank you.