Forum Discussion

rvokkarane's avatar
rvokkarane
Frequent Visitor
9 years ago
Solved

Trying to get Dynamic Weighted Average

  If you look at the picture, the column ww is where i'm trying to get the weighted average. The challenge so far has been to get the Loan to group by Score Group and be dynamic to date slicer. ...
  • Anonymous's avatar
    Anonymous
    9 years ago

    rvokkarane wrote:

    Lydia,

      The final goal is to get to % value. For example: between given two dates, SUM of LOAN of 150-159/SUM of all Loans. Again between two dates, not all time. 

     


    Hi rvokkarane,

    Create the following measures, check if percent returns your expected result.

    Sum of loan of score group between dates = CALCULATE(SUM(Query1[LOAN]),ALLSELECTED(Query1[Date]))
    Sum of all loan between dates = CALCULATE(SUM(Query1[LOAN]),ALLSELECTED(Query1[Score Group]))
    percent = [Sum of loan of score group between dates]/[Sum of all loan between dates]

    You can see the example.


  • Anonymous's avatar
    Anonymous
    9 years ago

    Hi rvokkarane,

    Please ensure that you create a  measure named ww as shown in the following screenshot? If the issue still persists, please share me your PBIX file so that I can test.


    Thanks,
    Lydia Zhang