Wrapping a table with multiple columns in an RDLC

enter image description here

In the RDLC report, you need to create a dynamic list (name, page number). But I need to wrap it in three columns like this. Any solution for this?

+4
source share
1 answer

I would install a matrix like this:

enter image description here

The row group is based on the expression:

=Ceiling(RowNumber(Nothing) / 3) 

The column group is based on the expression:

 =(RowNumber(Nothing) - 1) Mod 3 

i.e. we group based on the line number of each line.

This gives the required results for your data:

enter image description here

+8
source

Source: https://habr.com/ru/post/1493091/


All Articles