Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

View the List of Names in Textbox

Hi

I need to know how to view the list of Names in a textbox.

Example:

ta.PNG

When I click any one 'Dept' , It shows the List of names in a text Box.....

1 Solution

Accepted Solutions
Not applicable
Author

Hi,

Try the below code.

=if(GetSelectedCount(Dept)>0,Concat(Name,chr(10)))

View solution in original post

4 Replies
senpradip007
Specialist III
Specialist III

Try like Concat(Name, ',')

Not applicable
Author

Hi,

Try the below code.

=if(GetSelectedCount(Dept)>0,Concat(Name,chr(10)))

Kushal_Chawda

concat( distinct Name, '-')

svenkita
Creator II
Creator II

if you want every name to come on a different line use

=Concat(DISTINCT Name,Chr(10))