Quick Tips

  • The default output destination is HTML, and the default style is htmlBlue.
  • The structure for sending your output to a different ODS destination is:
    ODS destination-statement FILE="your-file";
                 ...your program here...
    ODS destination-statement CLOSE;
  • If you have multiple ODS statements, then you can specify ODS _ALL_ CLOSE; instead of closing each destination statement individually.
  • Use style overrides if you do not want to change the style of all of your output; just make customizations to a part of your PROC TABULATE table.
  • The general syntax for a style override is:
    STYLE=[style-attribute-name-1=style-attribute-value-1
    <style-attribute-name-2=style-attribute-value-2> ...]
  • The general syntax for a style ...

Get PROC TABULATE by Example, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.