I hope someone will come to my rescue. I have the following data and need to structure/tile it in columns. My initial data is as follows:
| ID | Name | Value |
| 222 | Name | Mel |
| 222 | Org | HTML |
| 222 | Stage | Completed |
| 223 | Name | Susan |
| 223 | Org | Visio |
| 223 | Stage | In Progress |
| 224 | Name | Kenan |
| 224 | Org | JD Group |
| 224 | Stage | Completed |
this is what I want data to look like
| | 222 | 223 | 224 |
| Name | Mel | Susan | Kenan |
| Org | HTML | Visio | JG Group |
| Stage | Completed | | |