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
Hi
My problem is similar to this one, but excluding values when not found.
I have a "Store" column and a "Product" column and i want to show all products from the store only when it has the product "Paint", if a store doesn't have "Paint" in one of its rows i need a filter that excludes all of the store in all pages of my model.
If this is my Data:
| ID | Store | Product |
| 1 | 1 | Chips |
| 2 | 1 | Paint |
| 3 | 2 | Paint |
| 4 | 3 | Soda |
| 5 | 3 | Chips |
I want my model to work only with this rows (Store 1 and 2):
| ID | Store | Product |
| 1 | 1 | Chips |
| 2 | 1 | Paint |
| 3 | 2 | Paint |
Thanks a lot!
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
It is for creating a new table.
Expected result calculated table =
VAR _storewithpaint =
SUMMARIZE ( FILTER ( Data, Data[Product] = "Paint" ), Data[Store] )
RETURN
CALCULATETABLE ( Data, TREATAS ( _storewithpaint, Data[Store] ) )
Hi,
Please check the below picture and the attached pbix file.
It is for creating a new table.
Expected result calculated table =
VAR _storewithpaint =
SUMMARIZE ( FILTER ( Data, Data[Product] = "Paint" ), Data[Store] )
RETURN
CALCULATETABLE ( Data, TREATAS ( _storewithpaint, Data[Store] ) )
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!
| User | Count |
|---|---|
| 9 | |
| 7 | |
| 6 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 18 | |
| 14 | |
| 14 |