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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Surya
Creator II
Creator II

JOINS

Hello,

I have table Prod that contain 200 products

Prod

a,

b,

c

 

now i need to add each product ab,cd

expected output is when user select in product field a

a,

ab,

cd

when user select b in prod field

b,

ab,

cd

..

 

Labels (1)
1 Solution

Accepted Solutions
Surya
Creator II
Creator II
Author

T1:
LOAD * INLINE [
Name
A
B
C
];

 

Join(T1)

LOAD * INLINE [
Alias_Name
ab
cd
];


Join(T1)

Load Name,Name AS Alias_Name

Resident T1;

View solution in original post

1 Reply
Surya
Creator II
Creator II
Author

T1:
LOAD * INLINE [
Name
A
B
C
];

 

Join(T1)

LOAD * INLINE [
Alias_Name
ab
cd
];


Join(T1)

Load Name,Name AS Alias_Name

Resident T1;