Forum Discussion

hkrash0920's avatar
hkrash0920
Helper I
8 years ago
Solved

Subtotal Percentages

Hi...I am trying to get the percentage of sub totals. See the below Excel file. For example for Jane Smith, we have percentages for CAP, RD, RER, and S199 which shows the percentage that CAP is compa...
  • v-chuncz-msft's avatar
    8 years ago

    hkrash0920,

     

    You may add a measure as shown below.

    Measure =
    DIVIDE (
        SUM ( Table1[FY18 YTD TER] ),
        CALCULATE ( SUM ( Table1[FY18 YTD TER] ), ALLSELECTED ( Table1[Svc Code] ) )
    )