简体   繁体   中英

How to display data in vertically in different columns in SSRS Report

I have an ssrs report which display data in a table just like image1.

image1 (Vertical)

abcd
efgh
ijkl
mnop
qrst
uvwx

I need to display data vertically in one table with different columns to avoid extra pages. Just like image2.

image2

abcd     IJKL    qrst
efgh    MNOP      uvwx

Currently I have tried matrix control with column group but it is displaying data like image3.

image3:

abcd
efgh
     ijkl
     mnop
           qrst
           uvwx 

Below are the group expression. Column Group : =ceiling(rownumber(nothing)/15)(for 15 records in columns) Why its not coming parallel like this :

abcd ijkl qrst
efgh mnop uvwx

Can anyone help me how to display it like above? Note : I am new member of stack overflow that's why I can't add Images.I typed table contents and its showing horizontally.but all data is one below the other and I have only one column. Thanks!

In Microsoft SQL Server Report Builder if you open up the report's properties you can specify the number of columns the data displays in. Setting Columns to 3 should get you the desired output.

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM