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 want to build a measure that return the selected value in the same viusal for example, if the user select france, then the measure return 30 and ignore the filter context of the dimension country.
probably it is easy, but can't figure out how to escape the filter context, tried disconnectd table without success.
thanks
Hi @mim ,
I don't think it is possible in the same table. When you click on this row, the context has been filtered. You could do it with slicer or in another table.
Thanks, I know it can be done in another table, but in this particular use case, it has to be in the same table, trying to reproduce a Tableau report, all good
interesting but does not seem possible!
@mim ,
Try like
measure =
var _m1 = sumx(allselected(Table),Table[value])
return
calculate(_m1,all(Table))
or
measure =
var _m1 = sumx(allselected(Table),Table[value])
return
calculate(_m1,removefilters(Table[country]))
it does not work, when I click on italy, I expect the measure to return 55 for all rows
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!
| User | Count |
|---|---|
| 104 | |
| 81 | |
| 66 | |
| 50 | |
| 45 |