Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
How would I modify this to get an average of story points for the number of Sprints displayed from the time slicer? I can get the total easy enough...
I think I can make it simpler... using a slicer to select the Sprint Name(s) add up the number of sprints selected (eg. 4 sprints selected) and divide the sum of the Sprint Points Done by that number. 381/4 in other works
Hi @Anonymous ,
A separate date table, the purpose of which is to avoid filtering from date fields in the fact table.
If the problem is still not resolved, please provide detailed error information and test data. Looking forward to your reply.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
where does the date column come from?
Hi @Anonymous ,
Try formula like below:
Sprint Done Points =
VAR slicer_result =
SELECTEDVALUE ( date[column] )
RETURN
IF (
slicer_result = MAX ( date[column] ),
IF (
'Sprint Burndown'[Date].[Date] = 'Sprint Burndown'[Sprint End Date].[Date]
&& 'Sprint Burndown'[State] = "Done",
'Sprint Burndown'[Story Points],
0
)
)
If the problem is still not resolved, please provide detailed error information and test data. Looking forward to your reply.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 78 | |
| 48 | |
| 35 | |
| 31 | |
| 27 |