In the following MDX queries
SELECT
{
[EffectiveDate].[Period].[All].CHILDREN,
[EffectiveDate].[Period].[All]
} ON COLUMNS,
NON EMPTY {
[Account].[Hierarchy].[Account Type].&[Assets].CHILDREN,
[Account].[Hierarchy].[Account Type].&[Assets],
[Account].[Hierarchy].[Account Type].&[Liabilities].CHILDREN,
[Account].[Hierarchy].[Account Type].&[Liabilities],
[Account].[Hierarchy].[Account Type].&[Equity].CHILDREN,
[Account].[Hierarchy].[Account Type].&[Equity],
[Account].[Hierarchy].[Account Type].&[Revenue].CHILDREN,
[Account].[Hierarchy].[Account Type].&[Revenue],
[Account].[Hierarchy].[Account Type].&[Expenses].CHILDREN,
[Account].[Hierarchy].[Account Type].&[Expenses]
} ON ROWS
FROM [JEMDA]
WHERE CrossJoin(
{
[Measures].[Amount]
},
{
[Source].[Source].[[Blank]]]
},
{
[EffectiveDate].[Period].&[5-Dec],
[EffectiveDate].[Period].&[5-Nov],
[EffectiveDate].[Period].&[5-Oct],
[EffectiveDate].[Period].&[6-Jan]
})
It reports the error:
The Period hierarchy already appears in the Axis0 axis.
Can you tell me how to solve this issue? Thanks!