I use ODS PDF and Proc Print to create reports for emailing to users. About the first half of the report each data line is split into 2 lines of output. The second half of the report contains all the data on one output line, with the data elements wrapped in the column. I would prefer the later style as it would reduce the number of pages in the report. Any ideas how to force the data to all be on one line consistently?
Possibly the UNIFORM option could help you, too. It adds some overhead to your step, but tells ODS to check all the columns to set a uniform column width. This may or may not have the desired effect.
cynthia
ODS PDF file='wombat.pdf' UNIFORM;
...code...
ODS PDF CLOSE;