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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
silveiralopesa
New Member

cumulative sum of a column in Power BI

Good morning, everyone!

I have been trying for a few days to perform the cumulative sum of a column in Power BI that resets the sum to zero when the value in another column (in the same row) is TRUE. At the moment, I managed to perform the cumulative sum and set zero for the rows that have the TRUE value, but it does not restart the cumulative sum after zero, as it should. Here is the DAX code I have so far. Could someone help me perform this cumulative sum correctly? Thank you in advance.


CumulativeSumBotrytis =
VAR CurrentDate = 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] <= CurrentDate &&
Donnes_SERRE1_2021_2023_test[Applications fongicides] <> 1
),
Donnes_SERRE1_2021_2023_test[ColuneBotrytis]
)
)
)

3 REPLIES 3
Sahir_Maharaj
Super User
Super User

Hello @silveiralopesa,

 

I have revised your DAX measure. Can you please try this:

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[Applications fongicides] = TRUE
                && Donnes_SERRE1_2021_2023_test[Date] <= CurrentDate
            )
        )
    )
RETURN
    CALCULATE(
        SUM(Donnes_SERRE1_2021_2023_test[ColuneBotrytis]),
        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[Applications fongicides] = TRUE
                        && Donnes_SERRE1_2021_2023_test[Date] <= Donnes_SERRE1_2021_2023_test[Date]
                    )
                )
            ) = ResetGroup
        )
    )

 

Should you have any questions, please do not hesitate to reach out to me.


Did I answer your question? Mark my post as a solution, this will help others!

If my response(s) assisted you in any way, don't forget to drop me a "Kudos" 🙂

Kind Regards,
Sahir Maharaj
Data Scientist | Data Engineer | Data Analyst | AI Engineer
P.S. Want me to build your Power BI solution? (Yes, its FREE!)
➤ Lets connect on LinkedIn: Join my network of 15K+ professionals
➤ Join my free newsletter: Data Driven: From 0 to 100
➤ Website: https://sahirmaharaj.com
➤ Email: sahir@sahirmaharaj.com
➤ Want me to build your Power BI solution? Lets chat about how I can assist!
➤ Join my Medium community of 30K readers! Sharing my knowledge about data science and artificial intelligence
➤ Explore my latest project (350K+ views): Wordlit.net
➤ 100+ FREE Power BI Themes: Download Now
LinkedIn Top Voice in Artificial Intelligence, Data Science and Machine Learning

thanks for the answer! BUT it gives me just blank spaces in the new column. 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?

This DAX resulted in blank spaces only 😑

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.