2009-11-24 4 views
1

나는 추출물을 제공하는 다음 쿼리를 사용합니다 (이 큐브로부터 CSV에 넣었습니다).MDX에 전체 열 추가

열에있는 모든 NRx의 합계를 첫 번째 열 NRx로 표시하고 나머지 NRx 열이 지금처럼 나타나야합니다. SUM (Measures.NRx)을 추가하려고 시도했지만 작동하지 않았습니다.

Total NRx은 어떻게 얻을 수 있습니까? 이 같은과 SELECT 쿼리하기 전에 계산 된 구성원이

SELECT 
NON EMPTY 
CrossJoin 
(
    [Time Period].[Calendar].[Cycle Dt], 
    { 
     [Measures].[NRx] 
    } 
) 
ON COLUMNS, 
NON EMPTY 
{(
     [Prescriber].[Prescriber Name].[Prescriber Name].Members 
    , [Prototype Alignment].[Tier Code].[Lilly Tier Code].Members 
    , [Prototype Alignment].[Territory Name].[Territory Name].Members 
    , [Prototype Alignment].[District Name].[District Name].Members 
    , [Prototype Alignment].[Division Name].[Division Name].Members 
    , [Prototype Alignment].[Area Name].[Area Name].Members 
    , [Market Product].[Product Group Nbr].[Product Group Nbr].Members 
    , [Market Product].[Product G Name Name].[Product G Name Name].Members 
)} DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME ON ROWS 
FROM 
( 
    SELECT 
    ({ 
     [Prescriber].[Ims Prescriber Id].&[011111] 
    } 
    , 
    { 
     [Time Period].[Cycle Dt].&[2008-10-03T00:00:00], 
     [Time Period].[Cycle Dt].&[2008-10-10T00:00:00], 
     [Time Period].[Cycle Dt].&[2008-10-17T00:00:00], 
     [Time Period].[Cycle Dt].&[2008-10-24T00:00:00], 
     [Time Period].[Cycle Dt].&[2008-10-31T00:00:00], 
     [Time Period].[Cycle Dt].&[2008-11-07T00:00:00], 
     [Time Period].[Cycle Dt].&[2008-11-14T00:00:00], 
     [Time Period].[Cycle Dt].&[2008-11-21T00:00:00], 
     [Time Period].[Cycle Dt].&[2008-11-28T00:00:00], 
     [Time Period].[Cycle Dt].&[2008-12-05T00:00:00], 
     [Time Period].[Cycle Dt].&[2008-12-12T00:00:00], 
     [Time Period].[Cycle Dt].&[2008-12-12T00:00:00], 
     [Time Period].[Cycle Dt].&[2008-12-19T00:00:00], 
     [Time Period].[Cycle Dt].&[2008-12-26T00:00:00], 
     [Time Period].[Cycle Dt].&[2008-12-26T00:00:00]   
    } 
) ON COLUMNS 
FROM [Mart] 
) CELL PROPERTIES VALUE, BACK_COLOR, FORE_COLOR, FORMATTED_VALUE, 
    FORMAT_STRING, FONT_NAME, FONT_SIZE, FONT_FLAGS 

답변

1

어떤 경우 :...

SUM ([측정] [NRX], [시간주기] [일정] [주기 DT])? 그런 다음

은 수행

이 NON EMPTY [MYCALCMEMBER_SUM] * 열을 CrossJoin (.. [시간주기] [일정] [주기 DT], {. [측정] [NRX]}),

을 선택