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
ExposureA =
VAR Output = CALCULATE(SUM(TableA[value]),
FILTER(TableA, TableA[field] = "Asia" && TableA[id] = selectedvalue(TableB[id]))
)
RETURN Output
| field |
| Asia |
| North America |
| Europe |
| Africa |
Solved! Go to Solution.
Hi @WestWinter ,
According to your description, field and value are all in tableA, you want the measure filtered by the field slicer, you don’t need to write TableA[field]=””, just put field in slicer, it automatically works.
ExposureA =
CALCULATE (
SUM ( 'TableA'[Value] ),
FILTER ( 'TableA', 'TableA'[ID] = MAX ( 'TableB'[ID] ) )
)
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @WestWinter ,
According to your description, field and value are all in tableA, you want the measure filtered by the field slicer, you don’t need to write TableA[field]=””, just put field in slicer, it automatically works.
ExposureA =
CALCULATE (
SUM ( 'TableA'[Value] ),
FILTER ( 'TableA', 'TableA'[ID] = MAX ( 'TableB'[ID] ) )
)
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You should be able to use SELECTEDVALUE just like you do with [id].
ExposureA =
VAR Output =
CALCULATE (
SUM ( TableA[value] ),
FILTER (
TableA,
TableA[field] = SELECTEDVALUE ( SlicerTable[field] )
&& TableA[id] = SELECTEDVALUE ( TableB[id] )
)
)
RETURN
Output
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!