Number of pages
These variables contain the page number in every report.
They can be used only in reports, and they are useful when you need, as an example, a footer or header with the number of the current page.
Examples
*/ Variable to be used to display the number of the current page in a report.
_pageno
*/ Variable to be used to display the total number of pages in a report.
_pagetotal
*/ Example on how to concatenate the variables in order to show a text in the form of: Page 1 of 15.
txt([Page], do_langue) + ' ' + transform(_pageno) + ' ' + txt([sur], do_langue) + ' ' + transform(_pagetotal)