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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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.

Labels (1)
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;