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

how to restrict data each each tab in a report

Hi,

I have a dimension which has 3 values in it - "UK", "USA", "Other"

I want to have a trellis report for each dimension but to have each report on a separate tab related to the Dimension.

Is there a filter that can be automatically applied to a Tab so that it only shows data related to one Dimension - I do not want the users to have to select the value from the Dimension.

Cheers

David

1 Solution

Accepted Solutions
johnw
Champion III
Champion III

Two approaches I'm thinking of. First, you could use set analysis to override the user selection in that field for that particular report on that tab. Something like this on the UK tab:

sum({<Country={'UK'}>} Sales)

Second, you could actually select the value when they go to the tab. In the sheet properties, Triggers tab, OnActivateSheet, add an action to make a selection in field Country, search string UK.

View solution in original post

2 Replies
johnw
Champion III
Champion III

Two approaches I'm thinking of. First, you could use set analysis to override the user selection in that field for that particular report on that tab. Something like this on the UK tab:

sum({<Country={'UK'}>} Sales)

Second, you could actually select the value when they go to the tab. In the sheet properties, Triggers tab, OnActivateSheet, add an action to make a selection in field Country, search string UK.

Not applicable
Author

Perfect - exactly what I was looking for.

Thanks for your help