Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
riyazasma1009
Creator
Creator

Loading data

Hi All,

I have created a table in the backend as shown below:

ID@1@2@3
1avsi.txtabc_def.qvwv.qvd

I want a table to be created in the backend from the above table. The table should look like as shown below:

IDHeader 2
1avsi.txt
2abc_def.qvw
3v.qvd

Is it possible? If yes, then how can it be achieved?

Thanks,

Asma

2 Replies
sunny_talwar

Use CrossTable() I guess. Is this a Inline Load?

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Perhaps like this:

Result:

CrossTable(ID,Header2)

LOAD 1 as Dummy, @1 as 1,@2 as 2,@3 as 3 INLINE [

ID, @1, @2, @3

1, avsi.txt, abc_def.qvw,v.qvd

];

Drop Field Dummy


talk is cheap, supply exceeds demand