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 to display field values in Texbox?

Hi all,

How to display field values in Texbox.

My req:

I have table:

Name, Marks

A, 100

B,200

and I have Texbox

Like

A texbox

B texbox

Req 2:

I have table:

Name, Marks

A, 100

B,200

and I have Texbox

Like

A texbox

B texbox

If i select any field in Listbox i need to  Name as "A "display respective Selection marks in Texbox.

Divya.

3 Replies
settu_periasamy
Master III
Master III

Hi,

Do you want to display the Field value based on your selection? if so, you can do it in multiple ways..

May be try like in the Text Box,

=if(GetSelectedCount(Name)>0,Concat(Distinct Name,','),'Select Name')

Or

=if(GetSelectedCount(Name)>0,GetCurrentSelections(Name))

Check the sample

Ignore this, if this is not your requirement..

jagan
Luminary Alumni
Luminary Alumni

Hi,

Try Concat()

Concat(Distinct DimensionName,',')



Sameway if you just want selected values only then use

GetCurrentSelections(DimensionName,',', 1000)

Regards,

jagan.

rajeshforqlikvi
Creator
Creator

Hi Divya,

Please find the Attachment.

Regards

Rajesh Kumar