Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
QSense
Creator II
Creator II

join two fields in same table

join.png

I have two fields in same table I want to put two fields values in one column

2 Replies
sivarajs
Specialist II
Specialist II

Try the example below

LOAD * , SubField(ID&','&ID1,',') as New_field Inline [

ID,ID1

100,101

102,103

];

Not applicable

Hi,

U can write a script like,

Load *

          ,UniteAdiG1&'#'&UniteAdiG2 as NewField

From SomeTable;

Regards,

Kabilan K