Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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])
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!