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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out 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;