advキューブのこのような場合と同じですか?
[最大注文日] [インターネット売上金額]についての最大の日付を返す
with member [max order date] AS
tail(NONEMPTY([Date].[Date].[Date],[Measures].[Internet Sales Amount])).item(0).item(0).PROPERTIES("name")
select {[max order date] } on 0 from [Adventure Works]
yesの場合、その後、あなたはこのようなあなたのキューブにメジャーを作成することができます
Create Member CurrentCube.[Measures].[max order date]
As tail(NONEMPTY([Date].[Date].[Date],[Measures].[Internet Sales
Amount])).item(0).item(0).PROPERTIES("name");
場合にのみ、現在の日まで、次に(advキューブを参照すると、キューブごとにいくつかのコード変更が必要です):
Create Member CurrentCube.[max order date] AS
Tail
(
NonEmpty
(
{
Head([Date].[Date].[Date]).Item(0).Item(0)--the first day in your Date dim
:
StrToMember("[Date].[Date].&[" + Format(Now(),"yyyyMMdd") + "]")-- as of current day
}
,[Measures].[Internet Sales Amount]
)
).Item(0).Item(0).Properties("name")
IDEでMDXの書き込み、解析、チューニング、デバッグを効率的に行う(www.mdx-helper.com)
答えていただきありがとうございます:) 私は正確に忘れてしまった。私は今日の後に日付を取ることを望んでいない(私の悪い:/)。 – MoonLightFlower
クエリが更新されました。 –