| Date | Title | Type | ||
|---|---|---|---|---|
| 7/11/05 |
23353 - In ODS HTML, can I specify the color and the font of a cell based on the cell's value? Selectively coloring cells in a table, based on the cells' values, is called traffic lighting. For example, if AGE<13, you want the cell to be colored red. Here are some examples that work with SAS Version 8 ... http://support.sas.com/kb/23/353.html, 25KB |
Usage Note | ||
| 2/6/04 |
23672 - How can I prevent PROC REPORT from adding a border around cells that are missing? Currently, there is not a way to prevent PROC REPORT from adding a borders when a cell has a missing value. However, you can create your own borders for the cell values using the CSS style properties. In the below ... http://support.sas.com/kb/23/672.html, 18KB |
Usage Note | ||
| 9/22/03 |
23371 - In ODS HTML output, how can I increase the thickness of the spacing between the cells? Specify the CELLSPACING= attribute within the style element Table. The spaces between the cells are not physical lines, rather the true background color of the table. Therefore, if the background color of the cells ... http://support.sas.com/kb/23/371.html, 17KB |
Usage Note | ||
| 9/22/03 |
23319 - How can I change the color of HTML cells in ODS output? You can change the background color of the data values (cell color) by modifying the argument associated with the string "bgA3" in the color_list. The alternative way is to make the changes in the style element that ... http://support.sas.com/kb/23/319.html, 17KB |
Usage Note | ||
| 8/30/06 |
23348 - How can I make cell values right-justified in ODS HTML output? To change the justifications of table cells, use the JUST= attribute. The values for JUST= are L, C, and R. You can specify JUST= in one of two ways: Modifying the table template is supported for procedures that ... http://support.sas.com/kb/23/348.html, 17KB |
Usage Note | ||
| 7/15/04 |
23390 - How can I specify text to display in a table cell as a flyover tool tip in ODS HTML? To display a tool tip, use the FLYOVER= attribute inside the appropriate style element. To selectively add a flyover to a cell, use the CELLSTYLE statement with the FLYOVER= attribute for procedures that have table ... http://support.sas.com/kb/23/390.html, 17KB |
Usage Note | ||
| 9/22/03 |
23393 - For ODS HTML output, how can I increase the size of the cells in the table? Use the CELLWIDTH attribute within the Table style element. The value specified below refers to pixels. proc template; define style styles.test; parent=styles.default; style Data from Cell / cellwidth=100; ... http://support.sas.com/kb/23/393.html, 16KB |
Usage Note | ||
| 9/22/03 |
23366 - In ODS HTML output, how can I modify the fonts responsible for the data values in the table cells? Use REPLACE to change the font that is associated with the string 'docFont' in the FONTS style element; see example 1. You can also modify the cell values directly in the style element that renders the data ... http://support.sas.com/kb/23/366.html, 17KB |
Usage Note | ||
| 9/22/03 |
23321 - How can I change the cellspacing color that separates the cells in the table in ODS HTML output? You can change the cellspacing color that separates the cells in the table by changing the value associated with the string "bgA1" in the color_list, or by modifying the table background with the Table style element. ... http://support.sas.com/kb/23/321.html, 17KB |
Usage Note | ||
| 9/22/03 |
23383 - How can I remove the borders from around the table and the cells in ODS HTML output? Using the FRAME=VOID attribute removes the borders from around the table. Using the RULES=NONE attribute removes the border from between the headers and the data values. To blend perfectly, you might want to use the ... http://support.sas.com/kb/23/383.html, 17KB |
Usage Note | ||