ICCube Cascading Filters with Multiple Selections

Looking at this, http://www.iccube.com/livedemo/?ic3reportName=I%20want%20a%20BigMac

I want to do the same, but with a multi-selection filter (button) which will reduce the selection list on the second filter (TreeFilter) Thanks.

+3


source to share


1 answer


In this case report, if the first filter is a multi-tasking, you must add the mdx second master queries Descendants(@{category})

.

UPDATE:



If you want to return only children of the first level, you need to add a parameter to the level, for example Descendants(@{category}, 1)

. Without the second parameter next to the children, it returns the parent as well. Also you can check out here how this feature works.

+1


source







All Articles