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: 
suryaa30
Creator II
Creator II

transfer selection from multiple states to one state

Hi All,

I have below Alternate states

Alt_A,Alt_B,Alt_C

Currently I am transferring selections in Alt_A to Alt_C as show below.

Now I want both transfer selections made in both Alt_A and Alt_B together in Alt _C.

How should I manipulate the below expression.

='('&Concat({Alt_A}DISTINCT Replace([BankName],' ','?'),'|')&')'

BankName.PNG

1 Solution

Accepted Solutions
Anil_Babu_Samineni

how about this?

='('&Concat({Alt_A * Alt_B}DISTINCT Replace([BankName],' ','?'),'|')&')'

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful

View solution in original post

6 Replies
Anil_Babu_Samineni

how about this?

='('&Concat({Alt_A * Alt_B}DISTINCT Replace([BankName],' ','?'),'|')&')'

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
suryaa30
Creator II
Creator II
Author

Is this intersection? I am expecting a union.

A= 1,2,3

B=4,5,

then 1,2,3,4,5 should be transferred

I came up with this.. will this do?

='('&Concat({Alt_A<Fecha+=P({Alt_B})>}DISTINCT Replace([BankName],' ','?'),'|')&')'

Anil_Babu_Samineni

For Union u need to specify +

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anil_Babu_Samineni

Try this?

='('&Concat({Alt_A<Fecha+=P({Alt_B} Fecha)>}DISTINCT Replace([BankName],' ','?'),'|')&')'

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
sunny_talwar

How about this

='('&Concat({Alt_A + Alt_B}DISTINCT Replace([BankName],' ','?'),'|')&')'

suryaa30
Creator II
Creator II
Author

I used +