我有一點點MDX-Query
問題。SSRS MDX哪裏條款問題
我想顯示所有的索賠成本,分爲類型和某種DocumentType。
這裏是我的代碼:
select
{
[Measures].[Claim Count],
[Measures].[Claim Cost Position Count],
[Measures].[Claim Cost Original],
[Measures].[Claim Cost Original Average],
[Measures].[Claim Cost Possible Savings],
[Measures].[Claim Cost Possible Savings Average],
[Measures].[Claim Cost Possible Savings Percentage]
} on 0,
NON EMPTY{
[Claim Cost Type].[Claim Cost Type].[Claim Cost Type].Members
} on 1
from
Cube
where
(
({StrToMember(@DateFrom) : StrToMember(@DateTo) })
,[Claim Document Type].[Document Type].&[1]
)
我有四個文檔類型:1 - 4
我想展示的三個第一Documenttypes
只有數據。
我嘗試以下WHERE子句:
where
(
({StrToMember(@DateFrom) : StrToMember(@DateTo) })
,({[Claim Document Type].[Document Type].&[1] : [Claim Document Type].[Document Type].&[3]})
)
但它顯示我只的數據中,DocumentType 1和3,而不是1到3
任何人可以幫助我嗎?
非常感謝您對我的英語不好!
亞歷
謝謝!這樣可行! :) – Alexo 2011-06-16 12:05:13