Forum Discussion
Tuning my report
Hi,
I have a source from SQl server that is being retrieved. It is around 300k with 20 columns. I have a measure as below.
2 Replies
- amitchandak
Super User
PBI5851 , Change this measure and try
countrows(summarize(FILTER(Job_Source, Job_Source[New_Job_Value]= "Complete"),JobSource[Job_Name]))
- AnonymousNot applicable
Hi PBI5851 ,
You can change the formula to the following form:
Measure = CALCULATE(DISTINCTCOUNT(JobSource[Job_Name]),FILTER(ALL(JobSource), 'JobSource'[New_Job_Value]="Complete"))You can try the following methods:
1. You can use the external tool DaxStudio to find the maximum run and analyze it.
2. Are you using the Import connection mode, you can change it to the Direct query connection mode to speed up the refresh rate.
https://community.powerbi.com/t5/Desktop/DAX-and-Power-BI-Optimization/m-p/268589
Optimize the model in power bi to reduce unnecessary columns and data.
https://docs.microsoft.com/en-us/power-bi/guidance/power-bi-optimization
Dax optimization:
https://maqsoftware.com/insights/dax-best-practices
Modeling optimization:
https://community.powerbi.com/t5/Desktop/DAX-optimization/td-p/946984
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.