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: 
ananyaghosh
Creator III
Creator III

I want to show selected values from list box or search box at text object

Hi,

I want to show the selected values from list box or searched text at text box object that means when i search a text and select that string at search box, after selecting it it will show in a text object. What to do now?

8 Replies
Gabriel
Partner - Specialist III
Partner - Specialist III

Hi,

Try this expression in a text box

=GetFieldSelections(FieldSelectedName).

Hope this helps

mvanlutterveld
Partner - Creator II
Partner - Creator II

Hi,

Apply the following expression in your text object: =GetCurrentSelections(', ')

The comma separates the selected values

Not applicable

Hi,

You can try this expression in list box.

If(match(fieldname,'text','text1','text2','text3','text4',fieldname)

sunny_talwar

Another alternate to the above could be:

=Concat(DISTINCT yourField, ',')

Best,

Sunny

avinashelite

if you want to show only field then use getfieldselection(field_name)

if you want for all the selection use getcurrentselection()

ramoncova06
Partner - Specialist III
Partner - Specialist III

Since I am assuming that you want to pull the data for an specific field then, sunindia‌‌ should do it

buzzy996
Master II
Master II

simply use wherever u want getcurrentslection(),that render the values

Anonymous
Not applicable

concat(FieldName,'I') you can use any separator of choice as 2nd argument of this function