Forum Discussion
basirve
5 years agoHelper III
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...
- 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.
Icey
5 years agoCommunity Support
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.
basirve
5 years agoHelper III
Dear Icey,
Its Really helffull, Thank you a lot!.
Regards,
Venkat