Forum Discussion
ovinasca
8 years agoFrequent Visitor
Measure aggregated based on dimensions
Hi all! I need to create a measure that aggregates based on dimensions, I mean, when its aggregated by the Time Dimension I need to SUM the values but when its aggregated by the Department Dimens...
ovinasca
8 years agoFrequent Visitor
Well, I could try to use a work-around presentation for the data.
But anyway, using two different measures I will have the same problem working with matrix:
The red cells are wrong.....
Vvelarde
8 years agoCommunity Champion
Hi, try with this Measure in Values Section
Measure =
IF (
HASONEVALUE ( Table1[TIME] );
SUM ( Table1[FTE's] );
AVERAGE ( Table1[FTE's] )
)Regards
Victor
Lima - Peru
- Anonymous5 years agoNot applicable
Solution is great and solves the initial problem. But can you help on the Total Sum cell as well? Current solution calculates the AVERAGE on the full table which returns 5 which doesn't make much sense. What is the solution to make the AVERAGE of total SUMs instead of AVERAGE of whole table at lowest level? The correct result should be 15