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.
Trying to use the Calculate function to filter out the orders on the SubCat2 field that have "Filler" only and do not have any other SubCat values associated with it.
I have this so far but am getting orders with Molding, Finish Panel, etc associated with that order number included.
Solved! Go to Solution.
Create a measure (you should really shorten the column names to make life a bit easier)
CountSubCat = CALCULATE(COUNT(TableJ[Sub cat]), ALLEXCEPT(TableJ, TableJ[Control ID Key]))
You then pull Control ID Key on to a table visual with the measure ( and Sub category if you need it ).
Use the visual filters pane to choose "Filler" for sub category.
If the CountSubCat is equal to 1 -> that's the winner. And there were none in the sample picture.
Hope it helps. Also can you post data rather than a picture next time. It always helps.
Create a measure (you should really shorten the column names to make life a bit easier)
CountSubCat = CALCULATE(COUNT(TableJ[Sub cat]), ALLEXCEPT(TableJ, TableJ[Control ID Key]))
You then pull Control ID Key on to a table visual with the measure ( and Sub category if you need it ).
Use the visual filters pane to choose "Filler" for sub category.
If the CountSubCat is equal to 1 -> that's the winner. And there were none in the sample picture.
Hope it helps. Also can you post data rather than a picture next time. It always helps.
User | Count |
---|---|
82 | |
81 | |
37 | |
34 | |
32 |
User | Count |
---|---|
96 | |
79 | |
61 | |
51 | |
51 |