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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi
I want to calculate Forecasted stock gross based on weeks and week diff and here is what I have wrote.
Solved! Go to Solution.
Hi @JIN23 ,
Thanks for reaching out to the community. Please try:
Forecast Stock Gross =
IF(
Dim_WK[week_full_no] >= Dim_WK[Launching week],
CALCULATE(SUM([Bought Gross]), FILTER(Dim_WK, Dim_WK[week_full_no] >= Dim_WK[Launching week])),
IF(
Dim_WK[week_full_no] > Dim_WK[Closing week],
CALCULATE(POWER([Bought Gross] * (1 - [Speed Plan]), [Closing week diff]), FILTER(Dim_WK, Dim_WK[week_full_no] > Dim_WK[Closing week])),
IF(
Dim_WK[week_full_no] = Dim_WK[Closing week],
CALCULATE(POWER([Stock gross] * (1 - [Speed Plan]), [Closing week diff]), FILTER(Dim_WK, Dim_WK[week_full_no] = Dim_WK[Closing week])),
BLANK()
)
)
)
This formula uses nested IF statements to handle the different conditions and SUM to aggregate the Bought Gross values. It also ensures that the POWER function is used correctly.
Give this a try and see if it resolves the issue. If you still encounter problems, please let me know!
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @JIN23 ,
Thanks for reaching out to the community. Please try:
Forecast Stock Gross =
IF(
Dim_WK[week_full_no] >= Dim_WK[Launching week],
CALCULATE(SUM([Bought Gross]), FILTER(Dim_WK, Dim_WK[week_full_no] >= Dim_WK[Launching week])),
IF(
Dim_WK[week_full_no] > Dim_WK[Closing week],
CALCULATE(POWER([Bought Gross] * (1 - [Speed Plan]), [Closing week diff]), FILTER(Dim_WK, Dim_WK[week_full_no] > Dim_WK[Closing week])),
IF(
Dim_WK[week_full_no] = Dim_WK[Closing week],
CALCULATE(POWER([Stock gross] * (1 - [Speed Plan]), [Closing week diff]), FILTER(Dim_WK, Dim_WK[week_full_no] = Dim_WK[Closing week])),
BLANK()
)
)
)
This formula uses nested IF statements to handle the different conditions and SUM to aggregate the Bought Gross values. It also ensures that the POWER function is used correctly.
Give this a try and see if it resolves the issue. If you still encounter problems, please let me know!
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The things is that I can not bring Week dimension to the if condition...
Since those week diff/full week no / launching week / closing week are at different dim tables.
Is there anyway I can bring those dimension to the if condition?
Like this.. BI can not find all the other dim tables...
Thanks