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: 
infosense_devel
Creator II
Creator II

ROW to comma Separated String in QlikView

Hello All,

I have data as below in one of my QVD file,

Line_id

1001

1002

1003

1004


my requirement is to show data as below while loading that into QVW file.

1001,1002,1003,1004

Thanks in advance.

1 Solution

Accepted Solutions
Anonymous
Not applicable


Data:
LOAD * INLINE [
Line_id
1001
1002
1003
1004
]
;

Data2:
load
concat(Line_id,',') as New_line_ID Resident Data;

View solution in original post

1 Reply
Anonymous
Not applicable


Data:
LOAD * INLINE [
Line_id
1001
1002
1003
1004
]
;

Data2:
load
concat(Line_id,',') as New_line_ID Resident Data;