Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
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
Luminary Alumni
Luminary Alumni

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