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 a field, that is the forecast of my company, and sometimes I have the correct value to put for some areas and for other areas I don't have, so I use a measure to estiamte this forecast based on what I Have of MTD and the days lefts to finish the mont, it is a simple rule of three.
But when I get this combination, the sum total of my table doesn't show the correct sum, it only summarize the values that I have in the columns of the table, it doens't sum the calculate measure of rule of three.
Solved! Go to Solution.
For your case, Just create a new measure as below logic:
Measure_Total =
VAR __table = SUMMARIZE('Table',[Attribute Name1],[Attribute Name2],..., "__value",[Formula1])
RETURN
SUMX(__table,[__value])
If you still have the problem, please share a simple sample pbix file and your expected output.
Regards,
Lin
Hi!
This is the formula:
For your case, Just create a new measure as below logic:
Measure_Total =
VAR __table = SUMMARIZE('Table',[Attribute Name1],[Attribute Name2],..., "__value",[Formula1])
RETURN
SUMX(__table,[__value])
If you still have the problem, please share a simple sample pbix file and your expected output.
Regards,
Lin
Thank you!
It worked, I had only to add "IFHASONEVALUE" in the return on your formula and it's working now.
Thank you!
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!