Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Names in text box

If I selected some names of my customers in the list, I want these in a separate text box.

Now I made a text box, and the expession =Name

And if I selected one name it is correct. But if I selected more than one, it failed. \

What is my fault?

1 Solution

Accepted Solutions
awhitfield
Partner - Champion
Partner - Champion

Hi Lieko234,

you could try

=Concat(Distinct(Name&CHR(13)))

This will give you a single record for each name on a separate line.

Andy

View solution in original post

5 Replies
giakoum
Partner - Master II
Partner - Master II

you need to use =concat(Name, ',')

giakoum
Partner - Master II
Partner - Master II

if you use only Name, QlikView automatically assumes the function is only (only(name))

But only shows only one value, not multiple

Not applicable
Author

Thanks thanks!

awhitfield
Partner - Champion
Partner - Champion

Hi Lieko234,

you could try

=Concat(Distinct(Name&CHR(13)))

This will give you a single record for each name on a separate line.

Andy

Not applicable
Author

Hi Andy,

I know, but it is also correct with CHR(10).

Thanks.