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: 
Karim_Khan
Creator III
Creator III

how to concatenate two coulmn value into one

Hi Team,

how to concatenate two column value into one single column.

I wanted to create the logic in which if I select the Programme Name then it should pick the Program name along with its Entry Pages.

KK
1 Solution

Accepted Solutions
ganeshreddy
Creator III
Creator III

Hi karim,

use new dimension like below

Load

[Programme Name],

[Entry Pages],

[Programme Name]&' '&[Entry Pages] as Combination,

.......


FROM ......;



use above combination field when its required as combination.



Regards,

Ganesh

View solution in original post

3 Replies
ganeshreddy
Creator III
Creator III

Hi karim,

use new dimension like below

Load

[Programme Name],

[Entry Pages],

[Programme Name]&' '&[Entry Pages] as Combination,

.......


FROM ......;



use above combination field when its required as combination.



Regards,

Ganesh

gautik92
Specialist III
Specialist III

create a key

ProgrammeName &'|'&  EntryPages as  %Key

Karim_Khan
Creator III
Creator III
Author

Hi,

    I wanted to get the sum of visits on the selection of current programme but its not working by applying below expression

=sum({$<[(v0) Program Name]={Combination}>}Visits)

KK