Hi all, I need some guidance on this difficult problem.Version: SQL Server/SSAS 2012I have this calculated measure that looks like this:CREATE MEMBER CURRENTCUBE.[MEASURES].[California - Total Stuff] AS ([Property State].[Property States].CurrentMember,[Property State].[State].&[CA], [Measures].[Number of Stuff] ), FORMAT_STRING = "#,#", NON_EMPTY_BEHAVIOR = { [Number of Stuff] }, VISIBLE = 1; It is working perfectly. In the Calculation Tools, Metadata Tab, each member is referenced by "&" so when I drag them into the expression, the selected member comes out as [Property State].[State].&[CA].My problem is that in another project file, same environment, same dimension and hierarchy, the members are not referenced by the "&" symbol. in the example above it looks like [Property State].[State].[CA] when I drag it into the expression. This is also the case when I mouse over on each member.On the example calculated measure above, I've written it in both ways[Property State].[State].&[CA] AND also tried [Property State].[State].[CA] but none of them work.Is there a property in the dimensions that I am missing on the other project file maybe?Please help. Any assistance is greatly appreciated.Regards,Mike
↧