Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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).
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
Then use =if(len(getcurrentselections())>0,0,1)
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
No idea. I don't know what Show=0 means or does. Perhaps you can post a qlikview document that makes things clear.
find attached
Can you point out where the Show=0 can be found? I can't find it in the document you posted.
I have sorted it out thanks.