Forum Discussion
hkrash0920
8 years agoHelper I
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...
- 8 years ago
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] ) ) )
v-chuncz-msft
8 years agoCommunity Support
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] ) )
)
hkrash0920
8 years agoHelper I
Thanks...It worked. Appreciate it.