Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
adamgaox
Creator
Creator

Replace Field with another Field in the same row

Hi All,

I'm finding a way to replace Field with another field in the same row.

Chaning Table

A 1 A 2A 3A 4A 5A 6
X1X1-1111


TO

A 1A 2A 3A 4A 5A 6
X1X1X1X1X1X1-1111


1 Reply
nagaiank
Specialist III
Specialist III

If Table1 has fields A1 and A6, you may the following script to get the Table2 with fields A1, A2, A3, A4, A5 and A6:

Table2:

Noconcatenate

load A1, A1 as A2, A1 as A3, A1 as A4. A1 as A5, A6 resident Table1;