Forum Discussion
Anonymous
2 years agoNot applicable
simple calculation create a big FE task
Hello, I'm in the process of optimizing one of our dataset, and I found a really strange issue with one of our measure. Here the measure : [# Progressão Vendas] = VAR ca = SUM(vendasDiariasT...
lbendlin
Super User
2 years agotry if this is any better
[# Progressão Vendas] =
VAR ca = SUM(vendasDiariasTop2080[MNT_CA])
VAR n_1 = vendasDiariasTop2080[# Vendas N-1 €]
VAR n_2 = DIVIDE(ca,n_1,1)
return n_2-1
Also check if you get DataCallBackIDs in the query plan.