Forum Discussion
Anonymous
6 years agoNot applicable
Best Way to Summarize Data
Hello all, I need to summarize the data in the screen shot, it needs to show the amount of PAID_HOURS and MONETARY_AMOUNT grouped by month by FinHrRollupName. Example: FinHrRollupName ...
v-frfei-msft
Community Support
6 years agoHi Anonymous ,
We can create a measure like that to work on it.
Measure =
VAR name =
MAX ( table[FinHrRollupName] )
RETURN
CALCULATE (
SUM ( table[value] ),
FILTER ( ALLSELECTED ( table ), table[FinHrRollupName] = name )
)
Anonymous
6 years agoNot applicable
Can you take a look at this file and see if that will work
https://www.dropbox.com/s/i33ogvhxifczid6/PBLs%20v2.pbix?dl=0