Join 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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have created a forecast based on open orders and closed orders for the entire business year.
The sales are broken down by month (i.e. jan, feb, march etc).
I would like to replace the calculated values of the future months with a projection. (replace column april with the values of the projection)
But I don't know how to replace the values so that the expected sales for the year 2022 is reached.
Solved! Go to Solution.
Hi @T_JF2022 ,
According to your description, I create a sample.
Here's my solution.
Assuming that forecast is the average of the previous values.
Forecast = AVERAGEX(ALL('Table'),'Table'[Sales])
Create a measure.
Sales' =
IF (
MAX ( 'Table'[Sales] ) <> BLANK (),
MAX ( 'Table'[Sales] ),
'Table'[Forecast]
)
Get the result.
I attach the sample below for reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @T_JF2022 ,
According to your description, I create a sample.
Here's my solution.
Assuming that forecast is the average of the previous values.
Forecast = AVERAGEX(ALL('Table'),'Table'[Sales])
Create a measure.
Sales' =
IF (
MAX ( 'Table'[Sales] ) <> BLANK (),
MAX ( 'Table'[Sales] ),
'Table'[Forecast]
)
Get the result.
I attach the sample below for reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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!