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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Bypassing Sheet FIlters for a Single Object

I had a search and could not find anything that was helpful so here we go...

We use a filter to remove data with a certain tag (Tag A). This works as intended because we don't want the data tagged Tag A included in the charts. However; we DO want to display a 'footnote' (I assume in the form of a text object...) that will display the total for data tagged as Tag A.

This is quite a pain because we can't get around the sheet filter for a single object.

Note: Coding the current charts to filter out Tag A is not an option we want to pursue because it would be days of work to modify all current expressions across multiple tabs.

Labels (1)
1 Solution

Accepted Solutions
disqr_rm
Partner - Specialist III
Partner - Specialist III

You could use Set Analysis to override any selection for a particular object. For example you could use following to show in the textbox for a footnote, which will INCLUDE records of all Tags:

='Total Sale= ' & sum({$<Tag=>} TOTAL NetSales)

By specifying Tag= (nothing after =), it supresses any selection made for that field (Tag, in this case).

Hope this helps you. Otherwise, an example QVW would be helpful to show what you are trying to do.

View solution in original post

3 Replies
disqr_rm
Partner - Specialist III
Partner - Specialist III

You could use Set Analysis to override any selection for a particular object. For example you could use following to show in the textbox for a footnote, which will INCLUDE records of all Tags:

='Total Sale= ' & sum({$<Tag=>} TOTAL NetSales)

By specifying Tag= (nothing after =), it supresses any selection made for that field (Tag, in this case).

Hope this helps you. Otherwise, an example QVW would be helpful to show what you are trying to do.

johnw
Champion III
Champion III

Or in this case, since I think we want JUST Tag A in the footnote:

='Total Sale= ' & sum({<Tag={'Tag A'}>} TOTAL NetSales)

Not applicable
Author

Thank you both very much. This has solved my issue.

I am told this expression has common use in QV9 but I am still on 8.5 so I can't wait to get onto 9.