This example illustrates how to start a new column (in MultiColumn mode) after a certain number of records if the column direction is set to "Down Then Across".
Use the Band.PageBreak property or the XRPageBreak control. To 'activate' a page break at certain positions only, apply a formatting rule (Visible = true) with the following condition to XRPageBreak:
([DataSource.CurrentRowIndex] + 1) % [Parameters.paramRecCount] == 0 And [DataSource.CurrentRowIndex] < [DataSource.RowCount] - 1
Use the Band.PageBreak property or the XRPageBreak control. To 'activate' a page break at certain positions only, apply a formatting rule (Visible = true) with the following condition to XRPageBreak:
([DataSource.CurrentRowIndex] + 1) % [Parameters.paramRecCount] == 0 And [DataSource.CurrentRowIndex] < [DataSource.RowCount] - 1