I have a dataset of the following structure:
Company.ID DDR (25632) PTL (89567)
2512 89 74
9875 78 96
7892 14 73
I would like to split the header into two different lines. With other words the second part of the header should or could be the first variable. How is possible to transform the dataset into the desired form (see below):
Company.ID DDR PTL
- (25632) (89567)
2512 89 74
9875 78 96
7892 14 73
To replicate the above example in Qlik, run the code below:
LOAD * Inline [
[Company.ID], [DDR (25632)], [PTL (89567)]
2512,89,74
9875,78,96
7892,14,73
];
Any help or tipp would be highly appreciated!