I have a cube in SSAS with the following measures:
NameID
Number
Date
NameID points to a Person dimension with a Name string (there can be multiple records with the same NameID). Date points to a server-side date dimension.
I'm looking for an MDX calculation I can include in the cube that will show the count of Person.Names where the sum of the Measure.Number fields for the date range given in the query is within a certain range (say 0-10, 11-20, etc).
I've tried various flavors of COUNT(), FILTER() and SUM(), but my MDX is rusty, and I'm missing something.