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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Use previous total with blank cumulative data

I am running aggregate totals based on GL for one of my reports. There is a gap in entries for a few periods where i would like to carry the previous periods amount if there were no transactions that period. Cant seem to get the logic after the initial cumulative code.  THanks

 

bhatfield_0-1663684070604.png

 

5 REPLIES 5
Anonymous
Not applicable

I am sorry i shouldve been more specific. I do not have an issue with the cumulative total rather when i try to break out the individual GLs and there is no entry for that specific period. This example shows me filtering the cumulative total and in period 6 there is no value so in the table it shows up as blank where i want it to show 27480.48 until period 7 where there is a new entry

bhatfield_0-1663685480072.png

 

PabloDeheza
Solution Sage
Solution Sage

Hi there!

For cumulative sum you try this:

CALCULATE (
    SUM ( ColumnToSum ),
    FILTER (
        ALL ( DateTable ),
        DateTable[Date] <= MAX ( DateTable[Date] )
    )
)

Let me know if that helps!

amitchandak
Super User
Super User

@Anonymous , The FiscalProfilePeriod should be a separate table like the date table. and period on axis should also come from FiscalProfilePeriod 

 

and use all on table in place of table column

 

filter(all(FiscalProfilePeriod ), <rest of the code >

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

i figured it out

 

bhatfield_0-1663686355555.png

 

 

Anonymous
Not applicable

those dates are from a profile that is fiscal period the date table is separate from them

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors