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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Sunil_26
Contributor II
Contributor II

Qlikview query

Hi all,st 

I want to combine the data from the second field into the first field,

please check the images below i need second image as output data.

 

Thanks

Labels (1)
1 Reply
sidhiq91
Specialist II
Specialist II

@Sunil_26  Please see below:

NoConcatenate
Temp:
Load * Inline [
Content, Data
My name is, XYZ
My country is, AUS
My Region is, Sydney
];

NoConcatenate
Temp1:
Load Content&' '& Data as Content
Resident Temp;

Drop table Temp;

Exit Script