Would love to know why this query does not return the Phone for each Customer?<div><div><br></div><div>select [Measures].AllMembers ON COLUMNS,</div><div>  [Customers].[Customer].Members DIMENSION PROPERTIES [Customers].Phone ON ROWS</div>
<div>from [SteelWheelsSales]</div></div><div><br></div><div>Nor does this....</div><div><div>select [Measures].AllMembers ON COLUMNS,</div><div>  {[Customers].[Customer].Members, [Customers].currentmember.properties(&quot;Phone&quot;)} ON ROWS</div>
<div>from [SteelWheelsSales]</div></div><div><br></div><div>but this does work...., but the member property is on the Measures axis not the axis where the Customers dim is located.....</div><div><div>with member Measures.Phone as &#39;[Customers].currentmember.properties(&quot;Phone&quot;)&#39;</div>
<div>select [Measures].AllMembers ON COLUMNS,</div><div>  [Customers].[Customer].Members ON ROWS</div><div>from [SteelWheelsSales]</div></div><div><br></div><div>Any insight is appreciated.</div>