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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikviewaf
Creator
Creator

Conditional Show

Hi,

i would like to implement a condition to show an object. The condition should be Show when the selection is different than France, UK, Germany"

Which is the right syntax for this?

Thanks

2 Replies
avkeep01
Partner - Specialist
Partner - Specialist

Hi Antonio,

try MATCH([Country],'France','UK','Germany')=0

In this case when the selection on the field [Country] the result is true, when the selection is France, Or Uk or Germany then the object is hidden.

Peter_Cammaert
Partner - Champion III
Partner - Champion III

A more fail-safe solution (that also takes multiple simultaneous selections where none of them should be France, UK or Germany) is:

WildMatch(Concat(Country, ';'), '*France*', '*UK*', '*Germany*') = 0