Xbasic
PAGE_TOTAL Function
Syntax
Result as N = page_total(C expr )
Arguments
- expr
The fully qualified fieldname (i.e. tablename->fieldname ). Note: The table name should not contain any spaces.
Returns
- ResultNumeric
The total value of a field's entries on a report page.
Description
PAGE_TOTAL() returns the total value of a field's entries on a report page. This function can only be used on a report page.
Example
? page_total(product->cost) = 4
See Also