Forum Discussion

Rsanjuan's avatar
Rsanjuan
Icon for Advocate III rankAdvocate III
10 years ago
Solved

Calculating Average of Average help

Hi,   I have a scenario where I want to compute the total average of one person and another person based on what is selected on a slicer.   Here is an example:   1.  Selected one person where the...
  • Rsanjuan's avatar
    Rsanjuan
    10 years ago

    BhaveshPatel and Greg_Deckler,

     

    I was able to figure out the DAX expression for this:

     

    AvgofAvgPM = AverageX(Values(Job[Project Manager]),Job[PM Rating])

     

    Basically taking a unique value in the table project manager, and then getting the average value of each project manager.  Then it takes those values and just averages it.  

     

    Thanks!