Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
i have a table like this:
| ID | ||
|---|---|---|
| 123 | true | false |
| 456 | false | false |
And i would like to transform it into something like this:
| ID | Social | Value |
|---|---|---|
| 123 | true | |
| 123 | false | |
| 456 | false | |
| 456 | false |
How can this be done ?
Thanks a lot!
K
HI
Try like this
CrossTable(Social,Value)
LOAD * Inline
[
ID,Facebook,LinkedIn
123,true,false
456,false,false
];
HI
Try like this
CrossTable(Social,Value)
LOAD * Inline
[
ID,Facebook,LinkedIn
123,true,false
456,false,false
];