The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
28 | |
10 | |
8 | |
6 | |
5 |
User | Count |
---|---|
33 | |
13 | |
12 | |
9 | |
7 |