- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 08-28-2009 02:48 PM
(2900 views)
I know that in Proc report you can use a split character to break the text in a long column title but how do you accomplish this for the text withing the report?
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Does this help?
[pre]
data test;
a = 'This*text*is*split';
run;
proc report split='*' list nowd;
column a;
define a / flow;
run;
[/pre]
[pre]
data test;
a = 'This*text*is*split';
run;
proc report split='*' list nowd;
column a;
define a / flow;
run;
[/pre]
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi:
Remember that FLOW is a LISTING only option. To insert line feeds or line breaks with ODS RTF, PDF and HTML destinations, you would either:
1) use the CELLWIDTH= style attribute to make the cell smaller (will NOT work for LISTING)
2) use ODS ESCAPECHAR to insert the line feed ESCAPECHAR string (will NOT work for LISTING)
cynthia
Remember that FLOW is a LISTING only option. To insert line feeds or line breaks with ODS RTF, PDF and HTML destinations, you would either:
1) use the CELLWIDTH= style attribute to make the cell smaller (will NOT work for LISTING)
2) use ODS ESCAPECHAR to insert the line feed ESCAPECHAR string (will NOT work for LISTING)
cynthia