Example
First consider the following query and the results it returns:
SELECT MEASURES.[%COUNT] ON 0,
BOTTOMPERCENT(birthd.decade.MEMBERS, 100, MEASURES.[%COUNT]) ON 1 FROM patients
Patient Count
1 1910s 6
2 1920s 13
3 2010s 44
4 1940s 54
5 1930s 56
6 1950s 107
7 1970s 128
8 1960s 136
9 1990s 144
10 1980s 155
11 2000s 157
Because percentage is 100, all members are returned.
Now consider a variation of the preceding, in which percentage is 50, so that we see the bottom 50 percent:
SELECT MEASURES.[%COUNT] ON 0, BOTTOMPERCENT(birthd.decade.MEMBERS, 50, MEASURES.[%COUNT]) ON 1 FROM patients
Patient Count
1 1910s 6
2 1920s 13
3 2010s 44
4 1940s 54
5 1930s 56
6 1950s 107
7 1970s 128
The total for the %COUNT measure for these members is slightly less than the specified threshold (50% of the total).