The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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!
User | Count |
---|---|
15 | |
11 | |
8 | |
8 | |
7 |
User | Count |
---|---|
21 | |
20 | |
11 | |
10 | |
7 |