Forum Discussion
Slow Switch Performance
- Anonymous1 year ago
You can put the measures into separate card visuals and use Performance Analyzer to test the run time. The run time is divided into three parts, of which the DAX query is mainly related to the calculation of the formula. You can check which part is causing the difference in running time.
Best Regards,
Jing
Hi Greg - thanks for your reply. I thought that would be the behaviour but it seems to be doing something different i.e. if [Selected View] is, say 1, then
Selected View = switch(TABLE_VIEW [Selected View],1,[Measure1],2,[Measure2],3,[Measure3],4,[Measure4],5,[Measure5])
takes much longer to run then the below
Selected View = switch(TABLE_VIEW [Selected View],1,[Measure1])
when it theory it should take the same time?!
- Anonymous1 year agoNot applicable
You can put the measures into separate card visuals and use Performance Analyzer to test the run time. The run time is divided into three parts, of which the DAX query is mainly related to the calculation of the formula. You can check which part is causing the difference in running time.
Best Regards,
Jing