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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
mmowrey
Helper I
Helper I

Running total stops calulating.

I have a running total that will only work for a range of 7 days.. if i add any more days it just keeps repeating the last value

Monthly Running Total Goal (RBC) =

CALCULATE(
[Red Cell Projected],
FILTER(
ALLSELECTED(BloodDrive[DriveDate]),
BloodDrive[DriveDate]<= MAX(BloodDrive[DriveDate])
)
)
 
 
mmowrey_0-1651076225454.png

 

3 REPLIES 3
tamerj1
Super User
Super User

@mmowrey 

Can you please share the complete table screenshot? What source tables are are involved in this table visual?

amitchandak
Super User
Super User

@mmowrey , do have data for those additional days ?

Assuming - Red Cell Projected is measure

This seems fine. or try like  

 

CALCULATE(
[Red Cell Projected],
FILTER(
ALL(BloodDrive[DriveDate]),
BloodDrive[DriveDate]<= MAX(BloodDrive[DriveDate])
)
)

 

If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

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

There is data for those other days.. and if i just run for those days it calculates.. It just stops after 7 days

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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