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

Announcements
Write Table now available in Qlik Cloud Analytics: Read Blog
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Hiding options in a table

Hi,

I have a chart which shows results based on different statuses in a table. There is a total of four statuses: Good, bad, extra, and free. I would now like to hide the "Extra" and "Bad" results from the table so that a user cannot select them. My idea of how to do this would be to input either a condition on the table itself were it only shows "Good" and "Free", or input a trigger on the sheet that does the same, but I dont really know how to do this. Any ideas?

Cheers,

1 Solution

Accepted Solutions
Not applicable
Author

Hi,

PFA. Hope it helps!

View solution in original post

7 Replies
Nicole-Smith

If you want to hide the "Extra" and "Bad" results from the table, add the following set analysis to whatever your expression is:

{<Status={'Good','Free'}>}

So your final expression will look something like:

sum({<Status={'Good','Free'}>} Value)

Not applicable
Author

Sorry, I dont want to hide the results (per say) I want to hide the option of having them there to begin with. The idea is that the user is to click in the table and that way filter out what he sees on screen, but I want to limit these options. I cannot just select not to select the data, however, since that would skew up the rest of the results.

Not applicable
Author

Try something like this in the Add calculated Dimension

if(Status <>'Extra' or Status <>'Bad, Status) and the check 'Suppress when values are null

Not applicable
Author

sorry, but this is a list box, i dont have the "suppress when null" option...

MK_QSL
MVP
MVP

In the list box expression.... type below..

=if(Status <> 'bad' and Status <> 'extra' , Status)

Not applicable
Author

Hi,

PFA. Hope it helps!

Not applicable
Author

worked perfectly! thanks!