Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi!
I need to get from option 1 to option 2.
how can I do that?
Thanks!
Yes,
you have to use the Crosstab function (inside qliksense script) :
Hello, here I send you an example with the cross table.
Data:
LOAD * INLINE [
Product, January, February, March
Apples, 100, 150, 200
Pears, 50, 75, 125
];
Final:
Crosstable (Month, Sales, 1)
LOAD * INLINE [
Product, January, February, March
Apples, 100, 150, 200
Pears, 50, 75, 125
];
Regarts.