For example, taking into account the Adventure Works database, I would like to display on rows the hierarchy of accounts and on columns i would like to show "Account Type" property.
This MDX shows an "#Error" on the Account Type column:
WITH MEMBER [Measures].[Account Type] AS [Account].[Accounts].[Account Type].CurrentMember.Name
SELECT
{[Measures].[Account Type]} ON 0,
(
[Account].[Accounts].Members
) ON 1
FROM [Adventure Works]
Any idea how this can be improved?