Previous Topic: FORMAT OptionNext Topic: MAX and MIN Options


LOGICAL Option

By default, the Report Writer reviews all input records and discards any with negative values. Use the LOGICAL option with a variable to bypass this check and treat all values for the variable as unsigned (logical) values.

The LOGICAL option has the following syntax:

LOGICAL

Example: LOGICAL Option

The following commands create a tabular report on terminals, treating all values for the variable TERM USE as unsigned. Records with a negative value for TERM RESP are still discarded.

TAB TERMID TERM RESP AND,
           TERM USE LOGICAL
END
RUN