Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
HI Experts,
I have a reuirement in qliksense as need 2 field to merge into one. I am explaining in details as below:
I have 2 existing fields
Now as per the requirement We need to merge fields with some calculations like below
So When i am clicking on BBB or clicking on Individual then it is working fine. But when clicking on BBB Income or BBB Cover or BBB Asset it is also selecting BBB
Could you please tell me how to ignore BBB when selecting BBB Income or BBB Cover or BBB Asset
Thanks in advance.
hi,
I understand your requirements. You can create a link table to achieve this. The code below will be helpful.
Hi,
Frontend you can use the below code:
=if(
WildMatch( [BBB_Individual],'BBB') and WildMatch( [Net_Network],'Income') ,'BBB Income',
if(
WildMatch( [BBB_Individual],'BBB') and WildMatch( [Net_Network],'Asset') ,'BBB Asset',
if(
WildMatch( [BBB_Individual],'BBB') and WildMatch( [Net_Network],'Cover') ,'BBB Cover',
if(WildMatch( [BBB_Individual],'Individual') and not(WildMatch( [BBB_Individual],'*income*','*asset*','*cover*')) ,'Individual',
if(WildMatch( [BBB_Individual],'BBB') and not(WildMatch( [BBB_Individual],'*income*','*asset*','*cover*')) ,'BBB',
'N/A'
))
)
)
)
Backend you can use the below code
Thanks for your reply !!!
Everything is working fine but I am getting issue on 5th line of the expression. That line is not coming in the front end, I am wondering how this is happening.
Whatever line I am placing on last it is disappering on the front end. Some of the scenarios I am atatching here.
1.
2.
Same is happening with 'Individaul' or 'BB Income' or 'BBB Cover' is placing on last line in the expression.
Could you kindly assist here. Thank You
hi,
you can make use of indirect set analyis refer following post for the same.
https://community.qlik.com/t5/QlikView-App-Dev/Indirect-Set-Analysis-for-P-and-E/td-p/522117
Vikas
Could you please create expression here using P() or E() as I am new to qliksense and I am confused by seeing that post.Thanks
hi,
I understand your requirements. You can create a link table to achieve this. The code below will be helpful.