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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
MalcolmCICWF
Creator III
Creator III

Conditional Show Dimension GetSelectedCount (1 selection)

Qlik Community,

I have a straight table with some expressions broken out by a bunch of dates as my dimension. I want a second dimension in my table, but I only want this dimension viewable when I select a single date... Otherwise I want PoolID hidden, how can I achieve this? I am trying combinations of the below...

=if(GetSelectedCount(Date)=1,PoolID)

It seems easy, but isn't working.

1 Solution

Accepted Solutions
sunny_talwar

May be try with just this as your dimension

PoolID

and then use condition on your dimension

GetSelectedCount(Date) = 1

or

Count(DISTINCT Date) = 1

View solution in original post

2 Replies
sunny_talwar

May be try with just this as your dimension

PoolID

and then use condition on your dimension

GetSelectedCount(Date) = 1

or

Count(DISTINCT Date) = 1

MalcolmCICWF
Creator III
Creator III
Author

wow I was making things too complicated, thanks