Articles in this section
Category / Section

How to Display Two Rows of Data Side-by-Side in Bold Reports

Published:
Updated:

In Bold Report Designer, displaying two rows of data side-by-side can enhance the readability and presentation of your reports. This guide will walk you through the steps to achieve this using expressions within the properties of each row.

Steps to Display Two Rows Side-by-Side:

1. Access the Tablix Row:
Navigate to the design view where you can see the tablix containing the rows you want to modify, then select the advanced property.

image.png

2. Set the Hidden Property Expression:
Select the first row that you want to display side-by-side with another row. In the properties panel, select the Visibility property, and then click the expression editor icon (a small square) to set the expression.

image.png

3. Set Expression for the First Table Row:
Enter the following expression:

image.png

=IIF((RowNumber(Nothing) Mod 2) = 1, False, True)

Note: This expression complements the first one. If the row number is odd, the row will not be displayed (True). Otherwise, if the row number is even, the row will be hidden (False).

4. Apply Expression to Second Table Row:
Select the second row you want to display side-by-side with the first row. Follow the same steps as before to access its properties. Set the Hidden property using the following expression:

image.png

=IIF((RowNumber(Nothing) Mod 2) = 0, False, True)

Note: This expression evaluates whether the row number is odd and sets the hidden property accordingly. If the row number is even, the row will be displayed (True). Otherwise, if the row number is odd, the row will be hidden (False).

5. Save and Preview:
After applying these settings to both rows, preview your report to ensure the desired outcome.

image.png

By utilizing expressions within the row properties, you can effectively display two rows of data side-by-side in Bold Report Designer. This approach enhances the visual appeal and readability of your reports, providing a more user-friendly experience for your audience. Experiment with different layouts and formatting options to further customize your reports according to your specific requirements.

For your reference, you can download the sample report here.

Was this article useful?
Like
Dislike
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied