Viewing 9 posts - 1 through 9 (of 9 total)
The pie I have not yet eaten ... http://imgur.com/4uuI2
😛
December 22, 2013 at 4:53 pm
Wow, so iserror([Date Dimension].[Fiscal Year Hierarchy].CurrentMember) does not test whether the CurrentMember function returns an error? MDX is still very counter-intuitive to me in many ways.
Thanks for offering the alternative...
March 12, 2013 at 9:34 pm
Thanks. Chris has given some input on another aspect of this problem in another forum and I am following this up with him too.
--Matt.
March 11, 2013 at 6:01 pm
Like you, I thought of putting fake values back into the cube's Calculation script rather than using WITH. I wanted to figure out whether null came from:
1. No calculation being...
March 11, 2013 at 1:17 am
OK, I tried this (a slight variation on your suggestion):
WITH
member [Measures].[Net Lost Commitments TEST ISERROR] as
'iif(iserror([Date Dimension].[Fiscal Year Hierarchy].CurrentMember)
, 1
, 0)'
member [Measures].[Net Lost Commitments...
March 10, 2013 at 10:55 pm
@davoscollective (I keep wanting to write DavrosCollective, with Dr Who overtones:-)) asks to see the calculation that defines [Measures].[Net Lost Commitments].
CREATE MEMBER CURRENTCUBE.[Measures].[Net Lost Commitments (during period)]
AS...
March 6, 2013 at 12:19 am
@davoscollective suggested running this query (I've changed it to reflect the relevant years):
select
[Measures].[Net Lost Commitments (during period)] on columns
, {[Date Dimension].[Fiscal...
March 6, 2013 at 12:06 am
I'll answer @davoscollective's three questions separately.
First, the query ...
select
[Measures].[Net Lost Commitments] on columns
, ([Date Dimension].[Fiscal Year Hierarchy].[Fiscal Year].Allmembers) on...
March 5, 2013 at 11:55 pm
A suggestion from another source has solved this for me. I can use --
iif(iserror([Date Dimension].[Fiscal Year Hierarchy].CurrentMember),
, null
, [Measures].[Acquisitions] - [Measures].[Growth...
February 18, 2013 at 8:45 pm
Viewing 9 posts - 1 through 9 (of 9 total)