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!View all the Fabric Data Days sessions on demand. View schedule
thats a matrix table. how do i cal variance between budget vs fullyallocated columns?
@Anonymous ,
You may try the measure below.
Measure =
IF (
ISINSCOPE ( Table1[Column2] ),
SUM ( Table1[Value] ),
CALCULATE ( SUM ( Table1[Value] ), Table1[Column2] = "budget" )
- CALCULATE ( SUM ( Table1[Value] ), Table1[Column2] = "fullyallocated" )
)
no calculating as expected. but the bigger problem is i need to just get one colum, but i get 2 colums for that measure. i know its bcuase of matrix any way to restric it ?
Measure =
IF (
ISINSCOPE (HL_scenario_Prim[lvl1] ),
SUM ( 'Fact'[Finance_Value] ),
CALCULATE ( SUM ('Fact'[Finance_Value] ),HL_scenario_Prim[lvl1] = "BUDGET" )
- CALCULATE ( SUM ( 'Fact'[Finance_Value] ), HL_scenario_Prim[lvl1] = "FullyAllocatedActuals" )
)
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!