Hi
I am new to Analysis services 2005.I have a calculated measure.costval which has following:
CREATE
MEMBER CURRENTCUBE.[Measures].costval AS IIf([Dim Date_Financial].CurrentMember.Level.Name="Date",[Measures].[Cost Value],
IIF
([Dim Date_Financial].CurrentMember.Level.Name="(All)",([Dim Date_Financial].
CurrentMember.lastChild),IIf
([Dim Date_Financial].CurrentMember.Level.Name="Year",([Date].[Financial].
CurrentMember.lastChild),IIf
([Dim Date_Financial].CurrentMember.Level.Name="FQuarter",([Dim Date_Financial].
CurrentMember.lastChild),IIf
([Dim Date_Financial].CurrentMember.Level.Name="FMonth",([Dim Date_Financial].
CurrentMember.lastChild),IIf
([Dim Date_Financial].CurrentMember.Level.Name="FWeek",([Dim Date_Financial].
CurrentMember.lastChild),(
Descendants([Dim Date_Financial].CurrentMember,[Dim Date_Financial].[Date]).Item(0).LastSibling,[Measures].[Cost Value]))
)))))
VISIBLE
= 1 ;After deploying wen i view in browser i get #value error.Please help me to fix this up
Regards
Usha