Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
abhaysingh
Specialist II
Specialist II

Use case

hi guys,

need some help

Input table is

  

Field1FieldID
A1
B2,3,4

ID Names Master 

FieldIDFiledN
1abc
2cde
3vfr
4bgt

Output Required:

  

Final Output at UI
Aabc
B

cde,vfr,bgt

Pls suggest how I can achieve it

Regards

Abhay

5 Replies
pradosh_thakur
Master II
Master II



script



load Field1,subfield(FieldID,',') as FieldID;

load * inline [

Field1|FieldID

A|1

B|2,3,4

](delimiter is |);

load * inline [

FieldID|FiledN

1|abc

2|cde

3|vfr

4|bgt

](delimiter is |);

use the two required columns in table box.

Learning never stops.
abhaysingh
Specialist II
Specialist II
Author

Hi pRadosh,

thanks ..... is  it possible to share qvf file for u? actually by mistake I have posted in qlikview community.

abhaysingh
Specialist II
Specialist II
Author

thanks for your reply, but Pradost output shared is not in required format, could you pls have a look once

pradosh_thakur
Master II
Master II

sorry ... my mistake

i didn't realize until you said that

dimension : Field1

try this in expression of the table 

concat(FiledN,',')

Learning never stops.
prma7799
Master III
Master III

Please check this

Dimension : Filed1

Expression : Concat(FiledN,',')