Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
suzel404
Creator
Creator

Function Concat in dimension

Hi all

How can I obtain values not in line:

Example : Concat(DISTINCT Name&' '&LastName&' '&PostaleCode, chr(10)

I want :

Name LastName PostaCode

Name LastName PostCode

NameLastName PostalCode

Thank you for your help.

Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

Concat() would be required to handle a lot of records. That is, if you want this to work in place like text box/variable; with such scope where there would be more than one records - this aggregation function would be required. Hope this clarifies.

View solution in original post

7 Replies
Not applicable

Why dont you just try a calculated dimension:

=Name&' '&LastName&' '&PostaleCode

or you use a straigt table with the 3 dimensions and then you have everything right next to each other.

regards,

MT

Anonymous
Not applicable

Try this:

Name & ''& LastName & '' & PostaCode

tresB
Champion III
Champion III

Try:

=Concat(DISTINCT Name&' '&LastName&' '&PostaleCode )

Not applicable

why yould you need a concat for this??

tresB
Champion III
Champion III

Concat() would be required to handle a lot of records. That is, if you want this to work in place like text box/variable; with such scope where there would be more than one records - this aggregation function would be required. Hope this clarifies.

suzel404
Creator
Creator
Author

Thank but I woulf like the previous range and forward range in dimension.
I can obtain it in expression But  not in dimension.

How can obtain it in dimension.  

suzel404
Creator
Creator
Author

I use valueList (StartEnd).

Thank.