DAX - is it efficient to use CALCULATE inside SUMX?

Viewed 24

Is it efficient in term of performance this measure:

MyCoeff :=
SUMX (
    Articles,
        CALCULATE (
            DIVIDE ( [Sales Net Amt AY], [Sales Qty AY], 0 ) * [Sales Qty LY]
        )
)
0 Answers
Related