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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
balasundaram
Creator II
Creator II

How to merge two field values into single filed in one table??????

How to merge two field values into single filed in one table??????

ex:

A   B

1   2

3   4

o/p:

C

1

2

3

4

2 Replies
tresesco
MVP
MVP

Load

          A as C

From <>;

Concatenate               // would not be required if all fields are common in both the tables like in this case (C)

Load

          B as C

From <>;

MarcoWedel

Hi,

one solution could be:

QlikCommunity_Thread_134136_Pic1.JPG.jpg

CrossTable (X, C)

LOAD 1, *

INLINE [

    A, B

    1, 2

    3, 4

];

DROP Fields "1", X;

hope this helps

regards

Marco