문제

In my cube I have defined a calculated measure as the sum of two other measures. How can I make this measure show up in one of my measure groups?

도움이 되었습니까?

해결책

Within your cube script where the calculated measure is defined, like so:

CREATE MEMBER CURRENTCUBE.[Measures].[Calculated Measure] AS ([Measures].[Measure 1] / [Measures].[Measure 2]), FORMAT_STRING = "Percent", NON_EMPTY_BEHAVIOR = { [Measure 1], [Measure 2] }, VISIBLE = 1 , DISPLAY_FOLDER = '\Custom Folder' , ASSOCIATED_MEASURE_GROUP = 'Custom Measure Group';

The properties relevant to your question are in bold.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top