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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Condition syntaxis to choos several expressions at the same time

Hi,

I have a pivor table with 11 expresions. I also have a field called 'Indicadores' which contains eleven tags.

In order to choose which expressions I wanto to show in the pivot table I wrote a Conditional in each expression so Indicadores=correspondentnametag.

I put Indicadores as a select field and the condition works OK if I choose only one item but the pivot table appears empty with the message 'All expressions disabled' if I choos several items.

How can I choose several items and show its correspondet expressions?

Thank you.

1 Solution

Accepted Solutions
swuehl
MVP
MVP

You can work with a string matching, but I like this:

=count({<Indicadores *= {'correspondentnametag'}>} Indicadores)

as expression for the conditional.

Regards,

Stefan

View solution in original post

2 Replies
swuehl
MVP
MVP

You can work with a string matching, but I like this:

=count({<Indicadores *= {'correspondentnametag'}>} Indicadores)

as expression for the conditional.

Regards,

Stefan

Not applicable
Author

Prefect. Thank you.