A dynamic list (name, page number) need to be generated to RDLC report. But I need to wrap it to three columns like this. Any solution for this?
Asked
Active
Viewed 5,121 times
1 Answers
8
I would set up a matrix like this:
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're grouping based on the row number of each row.
This gives the required results for your data:

Ian Preston
- 38,816
- 8
- 95
- 92
-
1Did you have any luck with this suggestion? – Ian Preston Aug 01 '13 at 21:29
-
2this works like a charm, thank you so much, I had the same issue as the OP and now it's fixed. Your answer should be accepted by the OP. – Esteban Jun 10 '14 at 18:13
-
1this seems to almost work except that the items go to the right first instead of down first – Dave Cousineau Aug 05 '17 at 00:30