Usage Note 23399: In ODS HTML output, how can I put hyperlinks on the BY-group information in the table of contents?
Add the Listentryanchor=yes attribute within the
style element ByContentFolder. View output.
proc template;
define style styles.test;
parent=styles.default;
style bycontentfolder from bycontentfolder /
listentryanchor=yes;
end;
run;
proc sort data=sashelp.class;
by age;
ods html file='temp.html' contents='content.html' style=styles.test;
proc report data=sashelp.class nowd contents='';
by age;
run;
ods html close;
See also the full PROC TEMPLATE FAQ and Concepts.
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: | SAS Reference ==> ODS (Output Delivery System) Third Party ==> Output ==> HTML
|
| Date Modified: | 2003-09-22 15:57:42 |
| Date Created: | 2003-08-19 12:12:35 |