Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to hide/unhide table view based on another table view in Qlik

I have Straight table..which contain region,regioniD,amount.
when I click on region value of table1,another straight table (table2) appear below on table1.

But when i Click on Clear button table2 hide and table1 appear as full date

5 Replies
MK_QSL
MVP
MVP

Go to Properties of 2nd Table...

Layout tab

Show

Conditional

Type below

=GetSelectedCount(region)>0

sundarakumar
Specialist II
Specialist II

this might be bec they have set the table 2 to show only if there is a selection made in talbe one.

check for "condition"  in layout tab. they would have specified a condition like

if(getselectedcount(region)=1,1,0)...

Straight table takes lot of time to load when we have huge data, so we go for these options to improve performance.

-Sundar

Not applicable
Author

Check is auto max is selected?

Also if you give some more description with the attachement it would be good to help you

Not applicable
Author

it is working,but ifI click on any dimension value (Like region,region ID) in both case table2 should be hide/unhide.

sundarakumar
Specialist II
Specialist II

change the condition to

if(getselectedcount(region)=1 or getselectedcount([region ID])=1,1,0)