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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
mthsdiniz
Frequent Visitor

Help while summing earlier values in a line graph

Good Afternoon,

 

I have the following volumes in the given times:

 

09:30:00 = 5000

09:45:00 = 100

10:00:00 = 1000

 

I want to display this values as an aggregation of the actual value with the earlier value, being this way>

 

09:30:00 = 5000

09:45:00 = 5100

10:00:00 = 6100

and so on ...

 

Is that possible?

 

Ps: my time value is a string value.

1 ACCEPTED SOLUTION
d_gosbell
Super User
Super User

That looks like a simple cummulative sum. A calculation like the following should work: 

 

Cummulative Volume = CALCULATE( SUM(table1[Volume]) , FILTER( All( table1[Time] ), table1[Time] <= MAX( table1[Time] ) )

 

I'm not sure if you can do MAX over string values, this used to be an issue in earlier versions of the engine. If so you may need to convert your time to a datetime data type.

View solution in original post

1 REPLY 1
d_gosbell
Super User
Super User

That looks like a simple cummulative sum. A calculation like the following should work: 

 

Cummulative Volume = CALCULATE( SUM(table1[Volume]) , FILTER( All( table1[Time] ), table1[Time] <= MAX( table1[Time] ) )

 

I'm not sure if you can do MAX over string values, this used to be an issue in earlier versions of the engine. If so you may need to convert your time to a datetime data type.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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