Hi:
This is not an ODS or BASE Reporting (PRINT, REPORT, TABULATE) question. If you are reading the data, then a LENGTH statement might be what you need, if your issues are with PROC PRINT, then the OPTIONS statement may be what you need. If you use ODS HTML, then you are generally not bound by LINESIZE when using PROC PRINT to list a dataset.
[pre]
options ls=255 nocenter;
ods html file='OE.html' style=sasweb;
proc print data=bigfile;
title 'open ended comments';
run;
ods html close;
[/pre]
If you want more help with this issue, you may find more timely help by contacting Tech Support.
cynthia