Usage Note 23360: How can I have only the first occurrence of a value of a
variable appear in the ODS HTML output?
Specify the BLANK_DUPS=ON attribute in order to show only the first occurrence of a field.
proc template;
define table temp;
define column name;
generic=on;
blank_dups=on;
end;
end;
run;
See also the full PROC TEMPLATE FAQ and Concepts.
Operating System and Release Information
| Product Family | Product | System | Reported Release | Fixed Release* |
| SAS System | Base SAS | All | n/a | |
*
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 11:11:49 |
| Date Created: | 2003-08-08 17:08:45 |