Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Row to Column

Hi,

please look at my example. I need the finale table like ...

568 / 789

One / Two

How can I achieved this?

Thanks... !

3 Replies
Not applicable
Author

Okay I think this is the solutions...

Not applicable
Author

!

swuehl
MVP
MVP

You can also achieve it using a GENERIC LOAD:

Test:

GENERIC

LOAD Recno() as Key, * INLINE [

    ID, Nummer

    564, One

    789, Two

];

The Generic Load

edit: The Key should probably just a constant in this case: LOAD 1 as Key, * INLINE [ ...