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
Hi -
I'm looking for a dax measure for a line chart graph to combine multiple values into one line. Currently it's showing each line for one calculation and when a specific month is selected it truns into a dot for that month, but instead I'd like to display a line for previous months and continuation of the same line to reflect forecast.
hi, @miii
Do you mean that when you select one specific month, there are still previous month and next month data in the chart? IF so, you don't need to select any month. When you select one month, other month will be filtered in the visual.
If not your case, please share your sample pbix file and expected output not just the formula of measure.
Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
Best Regards,
Lin
Can you provide an example of data and your current calculation? How are you doing the forecasting?
Thanks for help Greg - This is the code being used for calculations
Indirect Labor Budget YTD:= CALCULATE( [Indirect Labor Budget], DATESYTD('Calendar'[Date]) )
Indirect Labor Forecast YTD:= CALCULATE( [Indirect Labor Forecast], DATESYTD('Calendar'[Date]) )
Indirect Labor Actual YTD:=
var maxyear = MAX('Calendar'[Relative Year Index])
var _month = MAX(Scenario[SCENARIO_NUM])
return
calculate(
CALCULATE(
[Indirect Labor Actual],
filter(
'Calendar',
and(
'Calendar'[Relative Year Index] = maxyear ,
'Calendar'[Month] <= _month
)
)
),
DATESYTD('Calendar'[Date])
)
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 |
---|---|
113 | |
79 | |
77 | |
46 | |
39 |
User | Count |
---|---|
143 | |
113 | |
64 | |
63 | |
53 |