Equinox Online Help - Language Reference - A to Z

Home

ForceBreak

Applies to
SyntaxForceBreak ObjectExpression
Action[Statement] Forces a total break on a report.
ScopeOnly usable in report methods.
Notes

This statement forces a specified total block to print (at the next opportunity), regardless of any other conditions. The argument, ObjectExpression, is the object name of the total block.

CategoryReports
See Also ChoosePrinter, ForceBreak, NewPage, Print Setup, PrinterSettings, ReportField, ResetBlock
Example

This example ensures that no sales area has more than one hundred customers in the area report subtotal.

If NoCustomers >=100 Then ForceBreak "AreaSubtotal"