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: 
vijayit43
Creator
Creator

Current selection value in text object

Hi Expert,

          we want Current selection value in text object how to achieve this please suggest.

13 Replies
jagan
Partner - Champion III
Partner - Champion III

Hi,

Try Distinct keyword it eliminates the duplicates

=Concat(DISTINCT Period,',')


OR you can also use GetFieldSelections(Period)


Regards,

Jagan.

Not applicable

Hi,

Try this, if you want Nothing in the text box when nothing is selected from that field..

= if(GetSelectedCount(Field Name)=0,'',Concat(DISTINCT Field Name,','))

anbu1984
Master III
Master III

Concat() will display all Periods when nothing is selected

Not applicable

PFA