Forum Discussion

blazko's avatar
blazko
Icon for Helper III rankHelper III
9 years ago
Solved

median of calculated median

Hi,  So I have this problem, I have a table with individual efficiency scores (per day) of each worker. I know how tu calculate a monthly median for each one of them. But, each worker is assigned to...
  • Phil_Seamark's avatar
    Phil_Seamark
    9 years ago

    Hi blazko

     

    Please try this formula

     

    Median Score = IF(
    			ISFILTERED('Users'[user]),
    			CALCULATE(MEDIAN('Users'[score])),
    			MEDIANX('Sectors',CALCULATE(MEDIAN('Users'[score])))
    		)