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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello, I have a column in a table with product names and I wanted to exclude 4 products but not always. So I create another disconnected table with those 4 products and used it as a slicer. What I need is when ever I select from the slice I wanted the data of that selected product to be excluded from the data model. Any help would be appreciated . Thanks in advance.
Solved! Go to Solution.
@mnetsereab , refer
Need of an Independent Table in Power BI - Exclude: https://youtu.be/lOEW-YUrAbE
you would need the EXCEPT function.
it is like this
CALCULATE(
SUM(),
EXCEPT(
ALL(),
VALUES,
)
)
With ALL, we get the full product list and with VALUES, we capture the Products selected in the slicer. EXCEPT them, we get the rest of the Product list.
@mnetsereab , refer
Need of an Independent Table in Power BI - Exclude: https://youtu.be/lOEW-YUrAbE
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 51 | |
| 36 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |