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: 
Not applicable

Show Specific Data in Text Object While Ignoring Filter

Hello,

I am having trouble ignoring a specific filter (Record Type) when including a specific Category in my expression:

=num(sum({$*<[Record Type]=,[Category] = {'Events'}>} [Qualified]),'##,###.')

when using it without a specific category, this works fine:

=num(sum({<[Record Type]=>}[Qualified]),'##,###.')

What is wrong with my expression?

Thanks in advance!

-Jason

1 Solution

Accepted Solutions
rubenmarin

Hi Jason, then you can use the '*' parameter only in the category field:

=num(sum({$<[Record Type]=,[Category] *= {'Events'}>} [Qualified]),'##,###.')

View solution in original post

5 Replies
rubenmarin

Hi Jason, I think is because the $* in the first expression, not because of the specific category

Not applicable
Author

Hi Ruben,

Removing the $* fixes the issue of ignoring the Record Type filter but I originally had to put that in because If I selected a different Category such as Telemarketing, the actual # of Qualified within Events would still show up rather than 0

rubenmarin

Hi Jason, then you can use the '*' parameter only in the category field:

=num(sum({$<[Record Type]=,[Category] *= {'Events'}>} [Qualified]),'##,###.')

Not applicable
Author

Hi,

It is working.

=num(sum({$*<[Record Type]=,[Category] = {'Events'}>} [Qualified]),'##,###.')

Not applicable
Author

Perfect, thanks Ruben!