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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
sineadbhyland
New Member

Measure to sum and filter

Hello,

 

I would really appreciate some help, I have researched for hours!

I cannot get this measure to work so that I can show as a line graph of the cumulative value of Committed and Planned over the year(these are just 2 out of 4 criteria in the Description column).

 

Measure  = CALCULATE(

SUM('Sheet1'[Value]),
FILTER('Sheet1','Sheet1'[Description]="committed" && 'Sheet1'[Description]="planned"))
 
Below is a picture of the data I would like to transform into ONE line and as cumulative running total increasing with time for just Committed and Planned.
sineadbhyland_0-1666022723304.png

 

Thank you for any help,
Sinead
1 ACCEPTED SOLUTION
speedramps
Super User
Super User

Try this ....

 

Click here to download example 

 

 

 

Cumulative planned =
VAR endofperiod = MAX(Sheet1[Date])
RETURN
CALCULATE(
SUM(Sheet1[Value]),
Sheet1[Description] = "planned",
Sheet1[Date] <= endofperiod  )
 
 
Cumulative commited =
VAR endofperiod = MAX(Sheet1[Date])
RETURN
CALCULATE(
SUM(Sheet1[Value]),
Sheet1[Description] = "commited",
Sheet1[Date] <= endofperiod  )
 
Cumulative planned or commited =
VAR endofperiod = MAX(Sheet1[Date])
RETURN
CALCULATE(
SUM(Sheet1[Value]),
Sheet1[Description] in { "planned", "commited"},
Sheet1[Date] <= endofperiod  )
 
Cumulative everything=
VAR endofperiod = MAX(Sheet1[Date])
RETURN
CALCULATE(
SUM(Sheet1[Value]),
Sheet1[Date] <= endofperiod)
 
speedramps_0-1666026135879.png

 

Thanks for reaching out for help.

I put in a lot of effort to help you, now please quickly help me by giving kudos.

Remember we are unpaid volunteers and here to coach you with Power BI and DAX skills and techniques, not do the users job for them. So please click the thumbs up and accept as solution button. 

If you give someone a fish then you only give them one meal, but if you teach them how to fish then they can feed themselves and teach others for a lifetime.  I prefer to teach members on this forum techniques rather give full solutions and do their job. You can then adapt the technique for your solution, learn some DAX skills for next time and soon become a Power BI Super User like me. 

One question per ticket please. If you need to extend your request then please raise a new ticket.

You will get a quicker response and each volunteer solver will get the kudos they deserve. Thank you ! 

View solution in original post

1 REPLY 1
speedramps
Super User
Super User

Try this ....

 

Click here to download example 

 

 

 

Cumulative planned =
VAR endofperiod = MAX(Sheet1[Date])
RETURN
CALCULATE(
SUM(Sheet1[Value]),
Sheet1[Description] = "planned",
Sheet1[Date] <= endofperiod  )
 
 
Cumulative commited =
VAR endofperiod = MAX(Sheet1[Date])
RETURN
CALCULATE(
SUM(Sheet1[Value]),
Sheet1[Description] = "commited",
Sheet1[Date] <= endofperiod  )
 
Cumulative planned or commited =
VAR endofperiod = MAX(Sheet1[Date])
RETURN
CALCULATE(
SUM(Sheet1[Value]),
Sheet1[Description] in { "planned", "commited"},
Sheet1[Date] <= endofperiod  )
 
Cumulative everything=
VAR endofperiod = MAX(Sheet1[Date])
RETURN
CALCULATE(
SUM(Sheet1[Value]),
Sheet1[Date] <= endofperiod)
 
speedramps_0-1666026135879.png

 

Thanks for reaching out for help.

I put in a lot of effort to help you, now please quickly help me by giving kudos.

Remember we are unpaid volunteers and here to coach you with Power BI and DAX skills and techniques, not do the users job for them. So please click the thumbs up and accept as solution button. 

If you give someone a fish then you only give them one meal, but if you teach them how to fish then they can feed themselves and teach others for a lifetime.  I prefer to teach members on this forum techniques rather give full solutions and do their job. You can then adapt the technique for your solution, learn some DAX skills for next time and soon become a Power BI Super User like me. 

One question per ticket please. If you need to extend your request then please raise a new ticket.

You will get a quicker response and each volunteer solver will get the kudos they deserve. Thank you ! 

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 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.