Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I want to do this on a pivot table
Count = 1,2
Score = A, B
Concat score and Count to become like this:
A-1, B-2
on a cell in pivot table.
Currently my set expression is
Concat(DISTINCT Score & Count, ',')
Appreciate any help. please don't send qlikview files and type in the example instead. thanks.
Hi,
If you only want to concat values you can try this:
LOAD Distinct Score&'-'&Count as NewFeild,* INLINE [
Count, Score
1, A
2, B
];
Or write this as an expression Score&'-'&Count in your Pivot Table loading Score and Count dimensions
Regards
Post more data that you are trying to load