Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am looking for a solution to compare 2 WildMatch outputs in Qlik Sense Expression. In fact a way to code nested WildMatch .
I have my first list of id's generated by first Wildmatch expression And Second list of Id's generated by Second Wildmatch expression
Now I want common Id's from either of the lists
Ex: I want something like below:
=if ( wildmatch(
if(WildMatch(File_Text_2,'$(vFileText2)*'),id_2), if(WildMatch(File_Text,'$(vFileText)*'),id_1)
),id_1)
Explanation:
if(WildMatch(File_Text_2,'$(vFileText2)*'),id_2) : This generates list of id_2
if(WildMatch(File_Text,'$(vFileText)*'),id_1) : This generates list of id
Now I want to list the common id's that are present in both the lists id_2 & Id_1