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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
kangaroomac
Partner - Creator II
Partner - Creator II

Inter Record Concatenation

Hi All,

I have an interresting challenge. I have 2 fields: FieldName and FieldDescription. I would like to concatenate all occurences in FieldDescription where FieldName is the same. Is this possible?

I have attached a sample.

Thanks to all who tries.

1 Reply
whiteline
Master II
Master II

Oh, that is not so interresting...

You can do it

1) In a load script:

LOAD

     FieldName

     Concat(FieldDescription) as  FieldDescriptionConcatenated

RESIDENT YourInputTable;

2) Or in Chart:

Create a Chart (straigth table) with  dimension FieldName.

Use as expression: =Concat(FieldDescription)