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: 
Not applicable

merge cells in script

hi

i have a coulm I wanna merge to cells together

Header 1
name
A
B

name in my coulm name @

A & B are my cells in coulm name

I want to creat a new coulm and merge A & B to C

4 Replies
sunny_talwar

You want to Sum them or Concat them into a third row?

Not applicable
Author

I want to have A and B in new coulm with new value C

C = A , B

MarcoWedel

Hi,

one solution might be:

QlikCommunity_Thread_243053_Pic1.JPG

tabName:

LOAD name

FROM [https://community.qlik.com/thread/243053] (html, codepage is 1252, embedded labels, table is @1, filters(Remove(Row, Pos(Top, 1))));

Join

LOAD Concat(name,',') as NewColumn

Resident tabName;

hope this helps

regards

Marco

Not applicable
Author

I need to use group by in QV or I can use sql query