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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello Experts, If you could help in correcting DAX Logic
We have created a DAX Logics, based on two measures we have ZActuals & ZForecast.
Solved! Go to Solution.
Hello @Tool123456,
You can use the logic described here: Measure Totals, The Final Word.
So your measures will be:
ZFCPerMonth =
IF(
SUM(ZFC[ZActuals])=0,
SUM(ZFC[ZForecast]),
0)
and
ZFC =
VAR _table = SUMMARIZE(ZFC, ZFC[Month], "ZFCValue", [ZFCPerMonth])
RETURN
IF(HASONEVALUE(ZFC[Month]), [ZFCPerMonth], SUMX(_table, [ZFCValue]))
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.
Check out my latest demo report in the data story gallery.
Stand with Ukraine!
Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/
Thank you!
Hello @Tool123456,
You can use the logic described here: Measure Totals, The Final Word.
So your measures will be:
ZFCPerMonth =
IF(
SUM(ZFC[ZActuals])=0,
SUM(ZFC[ZForecast]),
0)
and
ZFC =
VAR _table = SUMMARIZE(ZFC, ZFC[Month], "ZFCValue", [ZFCPerMonth])
RETURN
IF(HASONEVALUE(ZFC[Month]), [ZFCPerMonth], SUMX(_table, [ZFCValue]))
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.
Check out my latest demo report in the data story gallery.
Stand with Ukraine!
Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/
Thank you!
Thanks this Worked.
Try the following formula:
ZFC = If (SUM(Project[ZActuals])=0, SUMX (VALUES ( Project[Year-Month] ); CALCULATE ( SUM(Project[ZForecast]) )), 0)
Hello
I replied to your post next Day. Not sure if it got deleted or not posted correctly. Apologies.
I tried formula the very next Day, it is leading to the same result. The sum is still coming 0.
Hello
Apologies. Might not be able to share the file. It might contain confidential informaiton, which I am not supposed to share. Thanks for trying, you were pretty close. The solution suggested by ERD worked. Thanks