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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
PoojaTekriwal
Regular Visitor

How to fill out blanks in Running Total matrix Power BI

S.PNG

 I have used this running total for my deals column 

Deals running total in LastDay =
CALCULATE(
    SUM('PIPELINEFINAL'[Deals]),
    FILTER(
        ALLSELECTED('PIPELINEFINAL'[LastDay]),
        ISONORAFTER('PIPELINEFINAL'[LastDay], MAX('PIPELINEFINAL'[LastDay]), DESC)
    )
)
 
and i have only one table Pipeline and in which my lastday is
LastDay = ENDOFMONTH(PIPELINEFINAL[First Contact Date].[Date])
and rows is stageName
2 REPLIES 2
V-lianl-msft
Community Support
Community Support
amitchandak
Super User
Super User

@PoojaTekriwal , Try to use date table, join that with last date

 

CALCULATE(
SUM('PIPELINEFINAL'[Deals]),
FILTER(
ALLSELECTED('Date'[Date]),
ISONORAFTER('Date'[Date], MAX('Date'[Date]), DESC)
)
)

 

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

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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
Top Kudoed Authors