How to avoid line breaks in CSV?

brkarthikeyan

New Member
i'm exporting data using PUT statement which has 120 columns. After 991 th character a line break (it can be viewed as rectangular box) is created automatically.

Code snippet:
PUT STREAM csv UNFORMATTED '"'
'ID' '","'
'Code' '","'
'Desc' '","'


Output:

If my 991 th character is in some column say "Hello"
then it is displaying as He
llo when i open it in textpad and rectangular box in excel.
 
What version of Progress?

What platform?

This works fine with 10.2B on Linux:
Code:
output to "test.csv".
put unformatted fill( "0123456789", 100 ).
output close.
 
Back
Top