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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Merge Columns ?

Hi All;

i have 2 columns in my Oracle DB

name surname
Alex Alton
John Dumber
Lisa Sandra

i would like to see this 2 columns in 1 list box(2 columns return to 1 column)

Name&Surname
Alex Alton
John Dumber
Lisa Sandra

How can i do it?

Thanks in advance

1 Solution

Accepted Solutions
Not applicable
Author

=Name & ' ' Surname

View solution in original post

5 Replies
Not applicable
Author

=Name & ' ' Surname

Not applicable
Author

=Name & ' ' & Surname

jjj

Not applicable
Author

It works but my app slows down !

this list box is slower than others...
so it is useless ?

Is there any way?

Not applicable
Author

Create a new column in script level which concatenates both the 'Name' and 'Surname'. You will get a new field and there wont be any performance issue.

e.g. Name &' '&Surname as [Full Name]

-Haneesh

Not applicable
Author

Thank you...