I am trying to pull in data from a CSV file and have it write it out in a different program. I use the "Open [filename] For Output as #1" format where the filename defined as a string.
It imports the data but when it writes it to the other program it sometimes loses text. For example if the value in the CSV file is "1234" it works perfectly. However if the value in the CSV file is "128z6" it will only get the "128" before the text. Is there anyway it can just accept the text as is? What is going on?
It imports the data but when it writes it to the other program it sometimes loses text. For example if the value in the CSV file is "1234" it works perfectly. However if the value in the CSV file is "128z6" it will only get the "128" before the text. Is there anyway it can just accept the text as is? What is going on?