Forum Discussion
silveiralopesa
2 years agoNew Member
Dax de calculo
Bom dia a todos! Eu estou tentando há alguns dias fazer a soma acumulativa de uma coluna no power bi que recomeçe a soma do zero quando o valor de outra coluna (na mesma linha) seja TRUE. No momen...
swikritee_p
Resolver II
2 years agosilveiralopesa , Try if this calculation can help
CumulativeSumBotrytis =
VAR CurrentDate = Donnes_SERRE1_2021_2023_test[Date]
VAR ResetGroup_ =
CALCULATE(
COUNTROWS(
FILTER(
ALL(Donnes_SERRE1_2021_2023_test),
Donnes_SERRE1_2021_2023_test[Date] <= CurrentDate &&
Donnes_SERRE1_2021_2023_test[Fungicide applications] = TRUE
)
),
ALL(Donnes_SERRE1_2021_2023_test)
)
RETURN
CALCULATE(
SUMX(
FILTER(
ALL(Donnes_SERRE1_2021_2023_test),
Donnes_SERRE1_2021_2023_test[Date] <= CurrentDate &&
CALCULATE(
COUNTROWS(
FILTER(
ALL(Donnes_SERRE1_2021_2023_test),
Donnes_SERRE1_2021_2023_test[Date] <= CurrentDate &&
Donnes_SERRE1_2021_2023_test[Fungicide applications] = TRUE
)
),
ALL(Donnes_SERRE1_2021_2023_test)
) = ResetGroup_
),
Donnes_SERRE1_2021_2023_test[ColuneBotrytis]
)
)- silveiralopesa2 years agoNew Member
Hello swikritee_p, thanks for the answer, the cumulative sum works well, BUT it doesnt restarts when the value in the "Applications fongiques" column is "True". For each day we have more then one value in the column "ColuneBotrytis" (one value for each 30 minutes in the day). In the column "Applications fongiques", the "TRUE" or "FALSE" value is repeated in all rows concerning the same date. Maybe this requests a change in the DAX?