0
このMDXクエリを翻訳して、すべての合計レコードの数を取得するにはどうすればよいですか?ウェブページでページングをしていますか?MDX行数とページ番号
SELECT {
[Measures].[Invoice Price],
[Measures].[Quantity],
[Measures].[Verified Total]
}
on columns, SubSet(
NONEMPTY(
(
[Distributor].[Distributor].[Distributor].ALLMEMBERS *
[Product].[PA Description].[PA Description] *
[Time].[Month Name of Year].[Month Name of Year].ALLMEMBERS *
[Time].[Month Number of Year].[Month Number of Year].ALLMEMBERS
),
{
[Measures].[Invoice Price],
[Measures].[Quantity],
[Measures].[Verified Total]
}
)
,0
,5
)
DIMENSION PROPERTIES MEMBER_UNIQUE_NAME on Rows from [Reporting]
実行中 クエリを実行中... 入力の最後に達しました。 実行完了 出力なし –