I had the following sample data
------------------------------|------|- Sishya School | 3 | ------------------------------|------|-- Chettinad Vidhyashram | 2 | ------------------------------|------|-- Asan Memorial School | 8 | ------------------------------|------|-- Maharishi Vidhya Mandir | 1 | ------------------------------|------|-- PSBB Memorial School | 4 | ------------------------------|------|-- D.V.S Public School | 2 | ------------------------------|------|-- St.Mary’s School | 5 | ------------------------------|------|--
I want to convert columns into Rows so that the table should look like the following,
---------|----------------|-----------|-----------|---------|---------|-------
Sishya   |     Chettinad  |   Asan    |  Maharishi| PSBB    |   D.V.S |St.Mary’s
School   |    Vidhyashram |   Memorial|  Vidhya   | Memorial|   Public| School 
         |                |    School |  Mandir   |  School |   School|
---------|----------------|-----------|-----------|---------|---------|-------
         |                |           |           |         |         | 
3        |        2       |      8    |       1   |       4 |      2  |     5
---------|----------------|-----------|-----------|---------|---------|---------                                            
Please help me to get my problem solve.
 
    