Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Concatenating Columns

Hi ,

How to concatenate 2 (colA & ColB) columns in qlikview List box control ?

Thanks

RAhul

10 Replies
Not applicable
Author

Good Day,

     Can you show some example.

Regards

Anonymous
Not applicable
Author

Hi everyone,

In List box properties, select <Expression> in Field list (General Tab).

It's recomended to create your concatenated field into the script.

Regards

Not applicable
Author

Hi,

Its better to do it in your script

but if you can't, you can use concat() function

See attached file for sample.

Regards,

Alex

jonathandienst
Partner - Champion III
Partner - Champion III

Hi

Actually it does not need to be as complicated as that. Set the listbox to expression and simply use something like

     =Field1 & ' ' & Field2

Hope that helps

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Not applicable
Author

Hi,

I suggested concat() function because Field1 &' '& Field2 gives me additional row.

Capture.PNG

Thanks for the info though

Regards,

Alex

jonathandienst
Partner - Champion III
Partner - Champion III

Alex

I changed your qvw to =Field1 & ' ' & Field2 and I did not get an extra row. (using QV10 SR5).

Regards

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Not applicable
Author

Hi,

Im using QV11, it might be because of QV version.

Regards,

Alex

Not applicable
Author

Hi guys,

                                i have attached the QVW file for referance. so there are 2 list boxes

                                Qx & Year. So i want to concatenate both columns in such away output shud display like 'YearQtr' listbox. how to write listbox expression or in script?

Thanks

Rahul

Not applicable
Author

Hi,

     Try on your script

     Load

     ColumnA,

     ColumnB,

     ColumnA&' '&ColumnB as ColumnC

     From C////

Regards.