Forum Discussion

romovaro's avatar
romovaro
Icon for Responsive Resident rankResponsive Resident
2 years ago
Solved

Compare monthly average vs Total Average

Hi   I have an issue with a calculation and crating a measure   Tried diff formulas but not working so far. Any tip?   Now I want to create a difference between the monthly average vs Tot...
  • v-weiyan1-msft's avatar
    2 years ago

    Hi romovaro ,

     

    Based on the sample and description you provided, Please try code as below.
    My Sample:

    Total Average =
    VAR _Day =
        SUM ( 'LOA assignations'[LOA Sig date vs greenlight date] )
    VAR CNT =
        COUNTROWS ( 'LOA assignations' )
    RETURN
        _Day / CNT
    
    LOA Month Comp =
    AVERAGE ( 'LOA assignations'[LOA Sig date vs greenlight date] )
        - SELECTEDVALUE ( 'LOA assignations'[Total Average] )
    

    Result is as below.

     

    If this reply still couldn't help resolve your issue, please feel free to ask us. Please share more details or share a sample pbix after removing sensitive data with us.

     

    Best Regards,
    Yulia Yan

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.