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: 
rickrogers
Contributor II
Contributor II

String field

[Table2]:
Load
Cloth Type,
Req No.,
RESIDENT [Table1];

Is it possible to change the load statement above…

Cloth Type

Req No.

Linen

7369183

Linen

7369075

Linen

7368888

Linen

7200055

Cotton

7369036

Silk

7369173

Silk

7369169

 

…to make a new field named [Req No. String] that looks like this…

Cloth Type

Req No. String

Linen

7369183, 7369075, 7368888, 7200055

Silk

7369173, 7369169

Cotton

7369036

1 Solution

Accepted Solutions
Vegar
MVP
MVP

Try
[Table2]:
Load
[Cloth Type],
Concat([Req No.], ', ') as [Req No. String]
RESIDENT [Table1]
Group by [Cloth Type]
;

View solution in original post

1 Reply
Vegar
MVP
MVP

Try
[Table2]:
Load
[Cloth Type],
Concat([Req No.], ', ') as [Req No. String]
RESIDENT [Table1]
Group by [Cloth Type]
;