Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Exclude Specific Word From Results

I have a table for all project names and the resources names for each project, I want to exclude every resource from the table that contains the word "Vendor" in it's name

20-Jun-16 2-44-54 PM.jpg

3 Replies
m_woolf
Master II
Master II

Load

     *

From TableName

where index(Resource,'Vendor') = 0;

Anonymous
Not applicable
Author

Hi Talal,

LOAD

*

WHERE SubStringCount(Upper(Resource),'VENDOR') = 0;

Regards!!

tamilarasu
Champion
Champion

One more solution,

LOAD *

Where WildMatch(Resource,'*Vendor*') =0;

Or

Where Not WildMatch(Resource,'*Vendor*');