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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

I have a textbox, chart on a dashboard and so many filters

I wanna to disappear the chart and textbox on my dashboard immediately a search or filter is made.

Note: I want to unshow textbox and chart immediately any selection is made on field

8 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Use the Show Conditional option on the Layout tab of the objects you want to show/hide. You can use the getselectedcount function to check if a selection has been made in a field. If you want to hide when a selection is made the use =if(getselectedcount(MyFieldHere)>0, 0, 1).


talk is cheap, supply exceeds demand
Not applicable
Author

Doing this is more like you restrict it to a specific field actually =if(getselectedcount(MyFieldHere)>0, 0, 1)

i wanna make my chart disappear when any field is checked

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Then use =if(len(getcurrentselections())>0,0,1)


talk is cheap, supply exceeds demand
Not applicable
Author

Am having issues because the chart i wanted to hide already have a variable in the condition "Show=0".

How do i incorporate this =if(len(getcurrentselections())>0,0,1) code segment

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

No idea. I don't know what Show=0 means or does. Perhaps you can post a qlikview document that makes things clear.


talk is cheap, supply exceeds demand
Not applicable
Author

find attached

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Can you point out where the Show=0 can be found? I can't find it in the document you posted.


talk is cheap, supply exceeds demand
Not applicable
Author

I have sorted it out thanks.