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.
Dear all,
I've this formula:
November and december is blank so is applying forecast, is correct.
Junuaty to October is real but is summing Actual + Forecast and is not correct, must be only real because _YTD has result.
Do you know how can I do it?
Solved! Go to Solution.
@LuisCaston82
Please try this measure:
Actual YTD + Forecast =
VAR _YTD =
CALCULATE (
[Amount],
BIFRF000[Report] = "",
BIFRF000[Period Type] = "T",
BIFRF000[Type] = "V"
)
VAR _Forecast =
CALCULATE ( [Amount], BIFRF000[Report Type] = "T" )
RETURN
IF ( _YTD = 0, _Forecast, _YTD )
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@LuisCaston82
Please try this measure:
Actual YTD + Forecast =
VAR _YTD =
CALCULATE (
[Amount],
BIFRF000[Report] = "",
BIFRF000[Period Type] = "T",
BIFRF000[Type] = "V"
)
VAR _Forecast =
CALCULATE ( [Amount], BIFRF000[Report Type] = "T" )
RETURN
IF ( _YTD = 0, _Forecast, _YTD )
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.