Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Show the Table based on selection otherwise it hidden.

Hi

I need to show a pivot table it based on selection in a multibox or else it should be hidden..............

Can you please tell  me how is it?

1 Solution

Accepted Solutions
qlikmsg4u
Specialist
Specialist

Any Particular field in Multi box? Here I'm Assuming your field as Year

Use this in Pivot Chart > Layout > Show Conditional

=GetSelectedCount(Year)>0

View solution in original post

6 Replies
qlikmsg4u
Specialist
Specialist

Any Particular field in Multi box? Here I'm Assuming your field as Year

Use this in Pivot Chart > Layout > Show Conditional

=GetSelectedCount(Year)>0

PrashantSangle

Hi,

go to chart Property->Layout->enter condition->if(getselectedcount(fielname)>0,1,0)

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
tresesco
MVP
MVP

Or, even wihtout IF, like:

=getselectedcount(fieldname)

Kushal_Chawda

Considering you have 3 fields in multibox as Field1, Field2 and Field3

Go to chart properties -> Layout tab-> check conditional and put below expression there

if(getselectedcount(Field1)> 0 or getselectedcount(Field2)> 0 or getselectedcount(Field3)> 0, 1,0)

MayilVahanan

Hi

Try like this

chart properties -> Layout -> conditional


= Getselectedcount(FieldName1)  or Getselectedcount(FieldName2)

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Not applicable
Author

hi,

I hope it will help u to complete the task

In  a multi box u r holding how many filters in it ?

For  Ex:3 filters x,y,z

if u r going to select x it should display corresponding x filter values in a pivot table

for that

Pivot Chart > Layout > Show Conditional

=GetSelectedCount(x)>0

it will display only for filter 'X'

if it want to work for all the filters dynamically means

Pivot Chart > Layout > Show Conditional

=(GetSelectedCount(x) + GetSelectedCount(y) + GetSelectedCount(z))>0

it will work for all the filters.

Thanks and Regards

Balaji.k