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.
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 4Instead of:Student1234ThanksFahad |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-12-03 : 10:18:47
|
how is data coming in actual dataset? |
 |
|
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 |
 |
|
cipriani1984
Constraint Violating Yak Guru
304 Posts |
Posted - 2008-12-03 : 10:29:14
|
The data comes as.Student ID, name, day001, X, 1001, X, 2001, X, 3When 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, day001, X, 1, 2, 3, 4There 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
|
 |
|
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 |
 |
|
|
|
|
|
|