Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi!
Does any one know a way to make the pick(match expression work on the full set of data via Set Analysis?
In the enclosed QV application I have two similar looking pivot tables.
Unfortunately pick(match works on the current selection why the pivot table will only show part of the set if I e.g. make a selection on the dimension F3.
Any feedback is appreciated!
Lars
I think the problem is that for anything but the matching row, the value of F2 is null. Since null isn't in your list of values to match, it doesn't select ANY expression, so returns null for the row. One way to fix that is like this:
pick(match(only({1}F2),1,2,3,4)
,expression1
,expression2
,expression3
,expression4)
I think the problem is that for anything but the matching row, the value of F2 is null. Since null isn't in your list of values to match, it doesn't select ANY expression, so returns null for the row. One way to fix that is like this:
pick(match(only({1}F2),1,2,3,4)
,expression1
,expression2
,expression3
,expression4)
Thanks John!
You are absolutely right - your suggestion solves the problem
Regards,
Lars