The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello all,
Using Jira data, I have created a basic burn up chart in Power BI. In the chart, I show the estimated story points (Scope) for the period, and completed story points. I have then included three forecast tracks: standard forecast, optimistic forecast, and pessimistic forecast that pick up after the last resolved date for completed stories. Now I would like to be able to surface, and display the dates on which each of the forecasts intercept with the scope line. So far I'm stuggling to produce this using DAX.
Above, you can see the Forecast intercepts with the Quarterly Scope on 12/26/2021. Can anyone suggest an approach in DAX that will surface that date?
Solved! Go to Solution.
Is this what you're after?
ForcastDate =
CALCULATE (
MIN ( Table1[Date] ),
FILTER ( Table1, Table1[Forecast] >= Table1[Quarterly Scope] )
)
Hi, @Benx ;
Hi, @Benx ;
If I understand you correctly, are you looking for the date closest to 75? If so, you can try it:
Measure =
var _a=TOPN(1,SUMMARIZE( ALL('Table'), [Date],"1",ABS(MAX('Table'[Forecast])-MAX('Table'[Quartery Scope]))),[1],ASC)
return MINX(_a,[Date])
Then add Y-Axis constant line.
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Is this what you're after?
ForcastDate =
CALCULATE (
MIN ( Table1[Date] ),
FILTER ( Table1, Table1[Forecast] >= Table1[Quarterly Scope] )
)
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
110 | |
80 | |
66 | |
53 | |
52 |
User | Count |
---|---|
121 | |
117 | |
77 | |
64 | |
63 |