<HTML>
<HEAD>
<TITLE>Labels above members</TITLE>
</HEAD>
<BODY>
<FONT FACE="Calibri, Verdana, Helvetica, Arial"><SPAN STYLE='font-size:11pt'>I don&#8217;t want this:<BR>
<BR>
Something Sales | Something Sales &#8211; Previous Year | Something Sales &#8211; Percent | Whatever Sales | Whatever Sales &#8211; Previous | Whatever Sales &#8211; Percent<BR>
<BR>
I want this:<BR>
<BR>
</SPAN></FONT><FONT SIZE="1"><FONT FACE="Courier New"><SPAN STYLE='font-size:9pt'>| Something &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;| Whatever &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|<BR>
| Sales | Previous Year | Percent | Sales |Previous Year | Percent |<BR>
</SPAN></FONT></FONT><FONT FACE="Calibri, Verdana, Helvetica, Arial"><SPAN STYLE='font-size:11pt'><BR>
This is what seems to work as a way to group up members and label them up. Is there better way?<BR>
<BR>
with<BR>
&nbsp;&nbsp;&nbsp;member [Something] as &#8216;1&#8217;<BR>
&nbsp;&nbsp;&nbsp;member [Whatever] as &#8216;2&#8217;<BR>
<BR>
Select <BR>
Hierarchize(<BR>
&nbsp;&nbsp;&nbsp;&nbsp;Union(<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Crossjoin(<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{[Something]}, <BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{[Measures].[Something Sales], [Measures].[Something Sales &#8211; Previous], [Measures].[Something Sales - Percent]}<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;), <BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Crossjoin(<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{[Whatever]}, <BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{[Measures].[Whatever Sales], [Measures].[Whatever Sales - Previous], [Measures].[Whatever Sales - Percent]}<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;)<BR>
)<BR>
<BR>
&lt;truncated&gt;<BR>
<BR>
If there is no better way, then my next step is to figure out how to put in alias for the rest of the measures so instead of &#8220;Something Sales &#8211; Previous&#8221;, it displays &#8220;Previous Year&#8221;. Any pointer appreciated. Thanks!<BR>
<BR>
Cheers,<BR>
j</SPAN></FONT>
</BODY>
</HTML>