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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

not match, Not LIKE problem

Hi All,

This is a really small problem. I am trying to filter out these below names and get all other names, hence i have put a <> (not) sign. But still i get all these names. What is the mistake here?

=if( SUBJECT_AREA <> 'Bop_Settlement'

or SUBJECT_AREA <> 'Conf_Dim'

or SUBJECT_AREA <> 'HODS_CTIX_DD'

or SUBJECT_AREA <> 'Reporting'

or SUBJECT_AREA <> 'WAR'

or SUBJECT_AREA <> 'WebTrends' or wildmatch(SUBJECT_AREA,'CODS*')=0,SUBJECT_AREA)

Thanks in advance!

Labels (1)
1 Solution

Accepted Solutions
johnw
Champion III
Champion III

Use "and" instead of "or".

View solution in original post

2 Replies
johnw
Champion III
Champion III

Use "and" instead of "or".

Not applicable
Author

Thanks so much!