Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How can we select a value from listbox and display it in text box?

Hi all please help me out for the above question.
I have values in the listbox loaded whenever a user selects a particular value from listbox it need to be displayed in textbox field.

As I am new to Qlikview i couldn't make it out.please help me.Urgent.

Thanks in Advance
Sravani.k

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Change Text Expressions as below..

='vSHOW = '& vSHOW & CHR(10)&'Selected Value from Customer List Box ' & CHR(10) & CHR(10)

& Concat(GetFieldSelections(Customer),', ')

View solution in original post

15 Replies
marcus_sommer

You could use getfieldselections(YOURFIELD, YOURDELIMITER).

- Marcus

Not applicable
Author

Thanks for the reply.

but the thing is whenever user clicks a button then the selected value need to be loaded in text box...

thanks in advance.


Not applicable
Author

=Concat(Fieldname, '#')

sundarakumar
Specialist II
Specialist II

Hi,

create a text box and put this in text

=getfieldselection(field,delimiter)

-Sundar

sunilkumarqv
Specialist II
Specialist II

Hi Sravani,

Try this copy and paste in your textobox change Listboxtable name

='Listbox Selection Name '  & If(GetSelectedCount(ListboxTableName)>0, GetFieldSelections(ListboxTableName))

Not applicable
Author

I Thank everyone for the reply.

but the thing is whenever user clicks a button then the selected value need to be loaded in text box...
Help me out for the Problem.

thanks in advance.

hschultz
Partner - Creator
Partner - Creator

If the values from the button is pre defined you could use the QV button functionality, setting a variable to that value

sundarakumar
Specialist II
Specialist II

Pls explain in detail.

What we have explined will show the seleted values in a seperate list box.

Pls specify what you need to achive in detail..

-Sundar

MK_QSL
MVP
MVP

Check Enclosed File