I'm working on an SSRS matrix that draws information from an SQL database. Right now, the report works just fine on a small scale, but depending on parameters a report could return thousands of columns. I'd like to set up the matrix to split data into pages, with a maximum of 100 columns per page, both for ease of reading and performance.
I know how to do this with row groups in SSRS (=ceiling(rownumber(nothing)/100), but I can not find an equivalent for columns. Is there a way to do this?