Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
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
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
create a key
ProgrammeName &'|'& EntryPages as %Key
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)