Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
silveiralopesa
New 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 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á.

SomaAcumulativaBotrytis =
VAR DataAtual = Donnes_SERRE1_2021_2023_test[Date]
RETURN
    IF(
        Donnes_SERRE1_2021_2023_test[Applications fongicides] = TRUE,
     0 
        ),
        CALCULATE(
            SUMX(
                FILTER(
                    ALL(Donnes_SERRE1_2021_2023_test),
                    Donnes_SERRE1_2021_2023_test[Date] <= DataAtual &&
                    Donnes_SERRE1_2021_2023_test[Applications fongicides] <> 1
                ),
                Donnes_SERRE1_2021_2023_test[ColuneBotrytis]
            )
        )
    )
2 REPLIES 2
swikritee_p
Resolver II
Resolver II

@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?

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.