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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
Anonymous
Not applicable

Blank Values In Cumulative Chart

Is there any way I can make the cumulative values appear when there is no data in the cumulative chart? I have a chart that shows the cumulative values for all the days in the month. Also, I have a date table related to the main table (TAB_CONSOLIDADA_GERAL) which provides all the dates. I want the value of the previous day to be shown when there is no data.

 

My current measure is as follows:

 

Cumulative_Total =

VAR vDateContext = MAX(TAB_CONSOLIDADA_GERAL[DTA_INIC_MNB])
RETURN

 

CALCULATE(
SUM(TAB_CONSOLIDADA_GERAL[TOTAL]),
FILTER(
ALLSELECTED(TAB_CONSOLIDADA_GERAL),
TAB_CONSOLIDADA_GERAL[DTA_INIC_MNB] <= vDateContext
)
)
 
AllaRN_1-1656943032045.png

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Please use date table in formula and axis

 

CALCULATE(
SUM(TAB_CONSOLIDADA_GERAL[TOTAL]),
FILTER(
ALLSELECTED(date),
date[date] <= max(date[date])
)
)
 
 
Why Time Intelligence Fails - Powerbi 5 Savior Steps for TI :https://youtu.be/OBf0rjpp5Hw
https://amitchandak.medium.com/power-bi-5-key-points-to-make-time-intelligence-successful-bd52912a5b...
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.
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

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Thank you. That works

amitchandak
Super User
Super User

@Anonymous , Please use date table in formula and axis

 

CALCULATE(
SUM(TAB_CONSOLIDADA_GERAL[TOTAL]),
FILTER(
ALLSELECTED(date),
date[date] <= max(date[date])
)
)
 
 
Why Time Intelligence Fails - Powerbi 5 Savior Steps for TI :https://youtu.be/OBf0rjpp5Hw
https://amitchandak.medium.com/power-bi-5-key-points-to-make-time-intelligence-successful-bd52912a5b...
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.
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

Hi, I have similar problem, when I use the above dax, I get all the totals.

sam_gift_0-1704480697958.png

Any idea how to resolve it sir?

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

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

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors