Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
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)