Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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 momento que consegui fazer a soma acumulativa e colocar zero nas linhas que tem o valor true, mas ela não reinicia a contagem da soma acumulativa após o zero, como deveria. Aqui esta a dax que tenho até agora. Alguém poderia me ajudar a fazer essa soma acumulativa da maneira correta?
Obrigado desde já.
@silveiralopesa , 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]
)
)
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?
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
116 | |
98 | |
87 | |
35 | |
35 |
User | Count |
---|---|
152 | |
98 | |
81 | |
61 | |
55 |