This MDX query:
WITH
MEMBER [Measures].[# answered] AS
([Dispozice].[Dispozice].[ANSWERED], [Measures].[# hovorů])
SELECT
{[Measures].[# hovorů], [Measures].[# answered]} ON COLUMNS,
CrossJoin([Datum vytvoření.Po dnech].[Rok].[2017], [Dispozice].[Dispozice].Members) ON ROWS
FROM [Hovory]
returns this table:
but I need something like this:
I need to sum measure # hovorů
only for those items that has the ANSWERED
member of dimension Dispozice
. I want to add this as computed measurement which will be used to calculate percantage.
Thank you very much.