Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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 (3)
1 Reply
Ivan_Bozov
Luminary
Luminary

Try this:

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

or

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

 

vizmind.eu