Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
josemaria_cabre
Contributor III
Contributor III

help with set analysis

Hi everyone!

Let's imagine I have following dimensions in my model:

Market
Product_group
Department

...+ 100 more dimensions

and this measures:
units
price

If I want to create a KPI which must not be filtered by e.g. 'Market' and 'Department', I'd use this formula:

Count({<Market = , Department= >} units)

Which formula should I use, if I want units to be filtered ONLY by dimension 'Product group', ignoring the +100 dimensions in my model? Is that possible?

Thanks in advance,
Jose.

 

 

Labels (2)
1 Solution

Accepted Solutions
micheledenardi
Specialist II
Specialist II

Try this:

Count({1<[Product group]= $::[Product group]>}units)

 

Source : Set Analysis: Ignore All Selections except for one field

Michele De Nardi
If a post helps to resolve your issue, please accept it as a Solution.

View solution in original post

2 Replies
micheledenardi
Specialist II
Specialist II

Try this:

Count({1<[Product group]= $::[Product group]>}units)

 

Source : Set Analysis: Ignore All Selections except for one field

Michele De Nardi
If a post helps to resolve your issue, please accept it as a Solution.
josemaria_cabre
Contributor III
Contributor III
Author

Worked perfect!

Thank you Michele