I need to create a filter in Performance point Dashboard to get only non empty values. I am trying to write a MDX Query for selecting the values
SELECT NONEMPTY{[H School ].[Dist Name], [H School ].[School Name]}
FROM [Early Cube ]
but it is not filtering the data
You need to check for non-empty cells against some measure. In other words, the dimension members need to be empty or non-empty against 'some set', such as a measure. There are two ways of doing this depending on whether you want your measures to be shown in your result.
NON EMPTY clause in SELECT:
It displays cells obtained from intersection between measures on one axis and dimension members on the other axis, thereby eliminating the
(null)values.NONEMPTY() function:
More detailed difference between these two approaches can be found here and here.