Forum Discussion

basirve's avatar
basirve
Helper III
5 years ago
Solved

DAX query facing performance issue.

Dear Experts, Below Dax Query facing perfomance issue, Could you please provide Best soulution for below DAX Measure. Note: _productivity is measure, Its contain sum(column).   Intention Of below...
  • Icey's avatar
    5 years ago

    Hi basirve ,

     

    To my knowledge, this expression is very simple now. 

    What's the size of your data? If it is large, this calculation time is normal.

     

    In addition, you can also try something like below:

    productivity_MinVal =
    CALCULATE (
        MINX ( VALUES ( Employee_Lookup[CRR] ), [_productivity] ),
        ALL ( Employee_Lookup[CRR] )
    )
    

     

     

    Best Regards,

    Icey

     

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