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

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

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-bd52912a5bd4
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-bd52912a5bd4
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
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.