hi,
I am using PROC REPORT with ODS to produce tables in pdf and rtf format. SPANROWS OPTION is used to combine cells with the same value of group variable. This help produce a nice table. However, if column width is fixed and the character string as the value of group variable is too long, the string will be wrapped into several lines. For output tables in rtf, the result looks something like this,
col1.........col2.......col3
this is......12.0.......22
a long......34.0.......33
string...... 56.0.......44
which is fine. However, for output tables in pdf, the result does not looks so good:
col1.........col2......col3
this is......12.0......22
a long
string
...............34.0......33
...............56.0......44
which has some blank spaces in col2 and col3.
Anyone know how to avoid such blank spaces in pdf, please advise. Thanks.