Forum Discussion
frank_gerritsma
3 years agoNew Member
Measures not efficient
hi, I use two measures (below). Table 1_log_activiteit contains 600K rows. Is there a way to make the measures more efficient? Currently the desktop application stalls when I use them in a tab...
VijayP
3 years agoCommunity Champion
Avoid writting CALCULATE (COUNTROWS()),
First create a measure with COUNTROWS() and stage that measure in another measure with CALCULATE. It will unnecessary Filter context! Try and let me know