Click here to Skip to main content
15,887,485 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I am creating reports using SSRS 2008.

I have a report like as below,

SQL
+-------------------+------------------+
| Currency: GBP     | Currency: INR    |
+--------+----------+------+-----------+
| ID     | Amount   |ID    | Amount    |
+--------+----------+------+-----------+
|S2001   |  478.89  | S492 |  23567.8  |
|--------------------------------------|
|S345    |  456.7   | S98  | 9876.0    |
|--------------------------------------|


I am doing Column Group by Currency.

I wants to display report such that Currency group should comes in row(one by one); not next to each other.

The final report should look like below,

SQL
+-------------------+
| Currency: GBP     |
+--------+----------+
| ID     | Amount   |
+--------+----------+
|S2001   |  478.89  |
|--------------------
|S345    |  456.7   |
+-------------------+
| Currency: INR     |
+--------+----------+
| ID     | Amount   |
+--------+----------+
|S492    |  23567.8 |
|--------------------
|S98     |  9876.0  |
|-------------------|



I don't wants to use Row Grouping by Currency.

Any alternative approch would be helpful.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900