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

Announcements
Search may be unavailable 11:30 PM on Aug 24 to 1:30 AM on Aug 25. Thank you for your patience.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Negative Expression?

hi

i have a column that is a list of letters  (A///A,B///A,C,B,,,etc)

so i can do dropdown select and say *A* so i can select all the rows that contain the A letter..

how can i with dropdown select do all <> *A* or not contain A

how do i do that as an expression

thanks

Labels (1)
1 Solution

Accepted Solutions
tamilarasu
Champion
Champion

4 Replies
Chanty4u
MVP
MVP

may be try

with your requirment

=wildmatch(FIELD,'*A*') and not wildmatch(FIELD,'*B*','*C*)

Digvijay_Singh
MVP
MVP

Try this may be -

(*^A*)

tamilarasu
Champion
Champion

Hi Jackie,

Try: (*^*A*)

Compound Search - demystified

Anonymous
Not applicable
Author

this works perfectly thank you

thanks all