Reports / Report operators |
Contains the current line number in a report.
LINENO
This operator takes no operand but returns the value of the line number of the report line that is currently printing.
The report engine calculates the line number by calculating the number of lines from the top of the current page, including the TOP MARGIN.
ON EVERY ROW IF LINENO > 9 THEN PRINT COLUMN 10, "Line:", LINENO USING "<<<" END IF