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...
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