Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts ,
I am new to qlikview and apologies in advance If I am asking something silly .
I am trying to load data from MS analysis services Cube where I have 2 Hierarchies namely Region and Year (each 3 levels) .
I have used the following MDX query after connecting to analysis services :
SELECT
{
[Measures].[Qty],
[Measures].[Turnover USD]
}
DIMENSION PROPERTIES PARENT_UNIQUE_NAME,HIERARCHY_UNIQUE_NAME ON COLUMNS , NON EMPTY
CrossJoin(
{[Area posted].[MG Area posted].Members},
{[Company].[Company].Children},
{[Customer].[Customer label].Children},
{[Product].[Product brand].Children},
{[Date].[Calendar Y-Q-M-D].Members})
ON ROWS
FROM [Sales]
But it provides the below output :
Eaxmple :
10
But I want the output as below :
Means I don't want any duplicates and all levels in flat 1 row . Attached is the qvw file .
Any pointers how I can achieve that ?
Thanks
Samir