Usage Note 23351: How can I format frequency counts with a crosstabulation in PROC FREQ?
There is no table template for the crosstabulation tables in PROC FREQ, so you cannot modify the formats with PROC TEMPLATE as in the one-way tables. Instead, use the FORMAT= option on a TABLE statement. Here is an example:
proc freq data=sashelp.class;
table age*height / format=6.2;
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: | Third Party ==> Output ==> HTML SAS Reference ==> ODS (Output Delivery System) SAS Reference ==> Procedures ==> FREQ
|
| Date Modified: | 2007-10-04 16:14:38 |
| Date Created: | 2003-08-08 16:47:19 |