Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hello,
Is there a way to select which date range you want the running sum function to select? For instance, the graph below, I would like the blue bar to not show for 6/4/2025 since the data is blank for that date:
Solved! Go to Solution.
Hi Rondel, just add a visual filter and under ForTrend in the pane, Advanced Filter, select Is Not Blank.
Hi,
Just in case you want a non visual calculation solution, try this measure
Measure = if([story points]=blank(),blank(),calculate([story points],datesytd(calendar[date])))
Hi @Rondel
Please try the below calculation as measure in the chart.
RunningTotal_StoryPoints =
IF (
ISBLANK([Story Points]),
BLANK(),
CALCULATE (
SUM('Table'[Story Points]),
FILTER (
ALL('Calendar'),
'Calendar'[Date] <= MAX('Calendar'[Date]) &&
NOT(ISBLANK('Table'[Story Points]))
)
)
)
🌟 I hope this solution helps you unlock your Power BI potential! If you found it helpful, click 'Mark as Solution' to guide others toward the answers they need.
💡 Love the effort? Drop the kudos! Your appreciation fuels community spirit and innovation.
🎖 As a proud SuperUser and Microsoft Partner, we’re here to empower your data journey and the Power BI Community at large.
🔗 Curious to explore more? [Discover here].
Let’s keep building smarter solutions together!
Hi @Rondel
I hope this information is helpful. Please let me know if you have any further questions or if you'd like to discuss this further. If this answers your question, please Accept it as a solution and give it a 'Kudos' so others can find it easily.
Thank you.
Hi @Rondel
I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.
Thank you.
Hi @Rondel
May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.
Thank you.
Thank you all for the replies - I will try these out
Hi @Rondel
Please try the below calculation as measure in the chart.
RunningTotal_StoryPoints =
IF (
ISBLANK([Story Points]),
BLANK(),
CALCULATE (
SUM('Table'[Story Points]),
FILTER (
ALL('Calendar'),
'Calendar'[Date] <= MAX('Calendar'[Date]) &&
NOT(ISBLANK('Table'[Story Points]))
)
)
)
🌟 I hope this solution helps you unlock your Power BI potential! If you found it helpful, click 'Mark as Solution' to guide others toward the answers they need.
💡 Love the effort? Drop the kudos! Your appreciation fuels community spirit and innovation.
🎖 As a proud SuperUser and Microsoft Partner, we’re here to empower your data journey and the Power BI Community at large.
🔗 Curious to explore more? [Discover here].
Let’s keep building smarter solutions together!
Hi,
Just in case you want a non visual calculation solution, try this measure
Measure = if([story points]=blank(),blank(),calculate([story points],datesytd(calendar[date])))
Hi Rondel, just add a visual filter and under ForTrend in the pane, Advanced Filter, select Is Not Blank.
User | Count |
---|---|
65 | |
60 | |
47 | |
33 | |
32 |
User | Count |
---|---|
85 | |
75 | |
56 | |
50 | |
45 |