How to transpose/crosstable to get the output
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Santhoshraj
6 - Meteoroid
‎07-24-2023
08:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi, i have a table like this with millions of rows:
Program id | manager | months +/- | scale | code |
NJN | John | 2 | 443 | p2efr |
AJN | Jim | 3 | 233 | p4tew |
TRP | Dwight | 0 | 345 | t0tre |
I need to change the orientation of the table like this:
Program id | NJN | AJN | TRP |
manager | John | Jim | Dwight |
months +/- | 2 | 3 | 0 |
scale | 443 | 233 | 345 |
code | p2efr | p4tew | t0tre |
Can someone help me with this?
Labels:
2 REPLIES 2
suwenchuan
7 - Meteor
‎07-24-2023
09:03 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
binuacs
21 - Polaris
‎07-24-2023
09:08 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@Santhoshraj One way of doing this
