0
MDXの新機能です。私は次の結果を出そうとしています。MDXクエリの問題
Attended Client Count Client Count
--------------------- -----------------
723 1223
そして、私はこれを行うことを試みた:
WITH MEMBER [Attended Client] AS
[Measures].[Client Count]
SET [Attended Client Set] AS
FILTER
(
[Dim Client Attendance].[Attended].&[Attended],
[Measures].[Client Count] <>0
)
SELECT {[Measures].[Client Count],[Attended Client] } ON COLUMNS
FROM [Client Intervention]
をそして、それは私にエラーをスロー:機能に指定された2組の異なる次元を持っています。私は[Measures] [Client Count]または[Attended Client]を同時に実行することはできますが、一緒に実行することはできません。これのための任意のソリューション???ありがとう