| Date | Title | Type | ||
|---|---|---|---|---|
| 7/11/05 |
24068 - In ODS HTML, can I sort on columns by clicking on the columns headers like in Excel? This can be done by applying a behavior which is an HTC file (HTML component file). This HTC file includes JavaScript and XML tags. There are default behaviors built into the browser which do not require a separate HTC ... http://support.sas.com/kb/24/068.html, 20KB |
Usage Note | ||
| 9/22/03 |
23358 - In ODS HTML output, how can I stack the columns within a cell? This is controlled by the grouping of the COLUMN statement. The below COLUMN statement places the statistics SUM and MEANS in one column (the header being the one for SUM), and MIN and MAX height in one column (the ... http://support.sas.com/kb/23/358.html, 17KB |
Usage Note | ||
| 10/17/07 |
23667 - How can I replace the tag with tags for column headers in ODS? You can use ODS MARKUP to replace the <THEAD> tag with <TH> tags for the column headers. All of the updated HTML tagsets use the <TH> tags for the column headers by default. You can ... http://support.sas.com/kb/23/667.html, 17KB |
Usage Note | ||
| 9/28/06 |
24606 - Creating tabular output with DATA step and ODS using a custom template Specify the FILE PRINT ODS statement to create an output object with the DATA step. Use PROC TEMPLATE to define a custom table definition. Include footers that span specified columns. http://support.sas.com/kb/24/606.html, 20KB |
Sample | ||
| 9/22/03 |
23375 - In ODS HTML output, can I make the column headers vertical rather than horizontal? Table headers or variables are horizontal by default. You might want to make them vertical in order to reduce the table size. To make the column headers vertical with the PRINT procedure, use the HEADING=VERTICAL ... http://support.sas.com/kb/23/375.html, 17KB |
Usage Note | ||
| 8/12/05 |
25416 - Demonstrates Customized Table, Header, and Column Using PROC TEMPLATE to change a TABLE and STYLE template http://support.sas.com/kb/25/416.html, 29KB |
Sample | ||
| 12/23/03 |
23470 - How can I make the column headers repeat on each page when an ODS HTML document is printed? Use the THEAD class selector with the property and value DISPLAY:TABLE-HEADER-GROUP. You can add this HTML code by using the HEADTEXT= option. Below is sample code. data one; do i=1 to 300; output; ... http://support.sas.com/kb/23/470.html, 17KB |
Usage Note | ||
| 9/22/03 |
23384 - In ODS HTML output, how can I remove all of the borders except between the column headers and the observations? The example code in FAQ 3288 can be modified. To remove all of the borders except the the one between the headers and the observations, specify RULES=GROUPS. proc template; define style styles.temp; parent= ... http://support.sas.com/kb/23/384.html, 17KB |
Usage Note | ||
| 9/22/03 |
23359 - What's the best way to specify text for the column header in ODS HTML output? Issue the TEXT statement inside a DEFINE HEADER definition to specify text for a header. See also the full PROC TEMPLATE FAQ and Concepts. http://support.sas.com/kb/23/359.html, 16KB |
Usage Note | ||
| 9/22/03 |
23355 - How can I compute a new field in the output, based on an existing field of the data set? The COMPUTE AS statement computes a new column in the output based on a numeric field within the data set. define column sqroot; compute as sqrt(source); header='square Root'; format=6.4; end; run; ... http://support.sas.com/kb/23/355.html, 16KB |
Usage Note | ||