Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 Analysis Server and Reporting Services (2005)
 Report formatting

Author  Topic 

cipriani1984
Constraint Violating Yak Guru

304 Posts

Posted - 2008-12-03 : 10:05:45
Hi,

When grouping in a report the usual style is the data is shown vertically, is there a way to show it horizontaly?

I.e.

Student 1 2 3 4

Instead of:

Student
1
2
3
4

Thanks

Fahad

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-12-03 : 10:18:47
how is data coming in actual dataset?
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-12-03 : 10:21:48
you can bring the data in way you want from backend query itself
Go to Top of Page

cipriani1984
Constraint Violating Yak Guru

304 Posts

Posted - 2008-12-03 : 10:29:14
The data comes as.

Student ID, name, day
001, X, 1
001, X, 2
001, X, 3

When im creating a table in the report im grouping but the data comes out vertically. How can I change this so it comes out horizontally.

Student ID, name, day
001, X, 1, 2, 3, 4

There 1, 2, 3, 4, are in different cells not same with coma seperation.


quote:
Originally posted by visakh16

you can bring the data in way you want from backend query itself

Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-12-03 : 11:23:48
try putting this in a matrix container with column group set as day
Go to Top of Page
   

- Advertisement -