Usage Note 23374: In ODS HTML output, how can I specify a place to break my labels?
Use the HTML tag <BR> to specify where you want a break to occur in a label. (When you specify LABEL, variable names are used as column headers.)
ods html body='temp.html';
proc print data=sasuser.class label;
label sex='<Div>this is<br>label for<br>sex</Div>';
run;
ods html close;
See also the full SAS Notes and Concepts for ODS.
Operating System and Release Information
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
| Type: | Usage Note |
| Priority: | low |
| Topic: | Third Party ==> Output ==> HTML SAS Reference ==> ODS (Output Delivery System)
|
| Date Modified: | 2007-10-04 16:20:30 |
| Date Created: | 2003-08-11 11:38:00 |