Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Display table across multiple columns in SSRS

I'm trying to format an SSRS report. At the top there is a dynamic image the runs across the top. Below that is a two column table. The table is long and runs onto the next page. Instead of going to the next page I want the table to continue on the same page into another column.

like image 789
Jesse Avatar asked Sep 25 '09 13:09

Jesse


1 Answers

Add a column to your input data that contains either a 0 or 1. Add a row group to your tablix that uses this column to place the data in two columns. Alternately you can calculate the 0 or 1 by taking the modulo of the curent row count and 2.

like image 101
Dewey Avatar answered Sep 19 '22 23:09

Dewey