Forum Discussion

ovinasca's avatar
ovinasca
Frequent Visitor
8 years ago
Solved

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's avatar
    Vvelarde
    8 years ago

    ovinasca

     

    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