Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
sr001
New Member

Multiply measure by column and sum total

Hello All,

 

I have read the other discussions on this topic and am still having issues with my report. 

 

Fields.PNGTable and formula.PNG

 

I am trying to create a measure (or column) which will multiply Hours by Average ESR (15 * 96.14) for each row and then sum the total cost. Have tried to follow other suggestions but am ready to give up. Any help appreciated.

 

Thank you

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

HI @sr001

 

I am not sure... but please give a SHOT to this MEASURE

 

MEASURE=
IF (
    HASONEVALUE ( '001'[Grade] ),
    SUM ( '001'[Hours] ) * AVERAGE ( 'ESR Rates'[ColumnName] ),
    SUMX (
        ALLSELECTED ( '001'[Grade] ),
        CALCULATE ( SUM ( '001'[Hours] ) )
            * CALCULATE ( AVERAGE ( 'ESR Rates'[ColumnName] ) )
    )
)

Regards
Zubair

Please try my custom visuals

View solution in original post

3 REPLIES 3
Zubair_Muhammad
Community Champion
Community Champion

HI @sr001

 

I am not sure... but please give a SHOT to this MEASURE

 

MEASURE=
IF (
    HASONEVALUE ( '001'[Grade] ),
    SUM ( '001'[Hours] ) * AVERAGE ( 'ESR Rates'[ColumnName] ),
    SUMX (
        ALLSELECTED ( '001'[Grade] ),
        CALCULATE ( SUM ( '001'[Hours] ) )
            * CALCULATE ( AVERAGE ( 'ESR Rates'[ColumnName] ) )
    )
)

Regards
Zubair

Please try my custom visuals

Thank you @Zubair_Muhammad !! 

 

That has worked perfectly, your help is much appreciated. 

 

I see (and think I understand the need for) that you have used SUM and SUMX, but what is the requirement for the HASONEVALUE line please.

 

Again, many thanks for your help.

Hi @sr001

 

Sorry for late reply... i was out of work

 

Actually ....it happens frequently with MEASURES that the sum of individual rows do not match the TOTAL ROW.

 

Check this precious post of @Greg_Deckler..

 

http://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/m-p/63376#U63376

 

HASONEVALUE lets you specify different formula for individual rows and the Total row

 

 


Regards
Zubair

Please try my custom visuals

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.