Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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],' ','?'),'|')&')'
how about this?
='('&Concat({Alt_A * Alt_B}DISTINCT Replace([BankName],' ','?'),'|')&')'
how about this?
='('&Concat({Alt_A * Alt_B}DISTINCT Replace([BankName],' ','?'),'|')&')'
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],' ','?'),'|')&')'
For Union u need to specify +
Try this?
='('&Concat({Alt_A<Fecha+=P({Alt_B} Fecha)>}DISTINCT Replace([BankName],' ','?'),'|')&')'
How about this
='('&Concat({Alt_A + Alt_B}DISTINCT Replace([BankName],' ','?'),'|')&')'
I used +