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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
analystdude96
Contributor
Contributor

If a field contains a certain word, display nothing in that field

As the title says, I want my app to show the field as blank/empty when that field contains a certain word. For example:

 

=if(match([Location],'*France*'),BLANK))

 

I am not sure what the syntax is to display it as blank or empty however. Any help would be appreciated. Thank you.

Labels (1)
1 Reply
Ivan_Bozov
Luminary
Luminary

Try this:

IF(WILDMATCH(Location, '*France*'),NULL(),Location)

or

IF(WILDMATCH(Location, '*France*'),'',Location)

 

vizmind.eu