Line pointer controls
in a DATA step that uses ODS are the same as line pointer controls
in a DATA step that does not use ODS. However, you can use only those
listed below with ODS. Line pointer controls have the following general
forms:
- #line
-
moves the pointer to
the specified line. line is
a number, a numeric variable, or an expression that identifies the
line to write to.
Requirement:If line is a number,
then it must be an integer. If line is a numeric variable or an expression, it does not have to be an
integer. If it is not an integer, then SAS truncates the decimal portion
and uses only the integer value.
- /
-
moves the pointer to
the first column of the next line.
Note: If you use a line pointer
control to skip lines in ODS output, then all columns that are not
referenced on the current line, or skipped lines, are set to a missing
value. Columns that contain numeric values display a period for the
missing value. If you prefer not to include these periods in your
ODS output, you can display missing numeric values as a blank by using
the MISSING statement (or the MISSING= system option).
For more information
about the statement, see MISSING Statement in SAS Statements: Reference. For more information
about the system option, see MISSING= System Option in SAS System Options: Reference.