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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
tipicatala
Partner - Contributor
Partner - Contributor

Wildmatch function

Hi everyone

I have a table Office

nameID
A1
B2

 

that is connected to other tables by ID

I do not need any information about Office B. How can I remove this ?

I try

LOAD name,

            ID

FROM [blablabla]

WHERE NOT WildMatch(name, 'B')

But it only removes it from the name column. ID 2 still remains.

 

 

Labels (1)
1 Reply
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

That's because ID 2 still exists in the other table. If you don't want it there either then you need to change the order in which you load tables:

 

Table1:
LOAD name, ID FROM ...source1... WHERE NOT Wildmatch(name, 'B');

 

Table2:
LOAD ID, ...other fields... FROM ...source2... WHERE Exists(ID);


talk is cheap, supply exceeds demand