Previous Page | Next Page

TEMPLATE Procedure: Creating Tabular Output

Tabular Syntax: TEMPLATE Procedure


Table of Contents: TEMPLATE Procedure: Creating Tabular Output

PROC TEMPLATE;
EDIT template-path-1 <AS template-path-2> < / STORE=libref.template-store > ;
statements-and-attributes
END;
DEFINE COLUMN column-path | Base.Template.Column
< / STORE=libref.template-store>;
statements-and-attributes
END;
DEFINE FOOTER footer-path | Base.Template.Footer
< / STORE=libref.template-store>;
statements-and-attributes
END;
DEFINE HEADER template-name | Base.Template.Header;
statements-and-attributes
END;
DEFINE TABLE table-path | Base.Template.Table
</ STORE=libref.template-store>;
statements-and-attributes
END;

This table lists the statements that add different features to tabular SAS output.

PROC TEMPLATE Statements
Task Statement
Edit an existing template for a table, column, header, or footer EDIT
Create a column template DEFINE COLUMN
Create a footer template DEFINE FOOTER
Create a header template DEFINE HEADER
Create a table template DEFINE TABLE

Previous Page | Next Page | Top of Page