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
I hope someone can help
I have a dataset (which I cannot alter its format) which I am pulling into BI
What I need is a measure to allow a card visual to count multiple materials in a product
Using the example data below, I want:
I tried pivoting the data on the material column, however this disrupts my ability to use the materials column as a slicer to add or remove materials from a matrix visual on the same page
Thanks for your help
Matt
Example data:
Product | Material |
Product 1 | Material 1 |
Product 2 | Material 1 |
Product 3 | Material 2 |
Product 1 | Material 2 |
Solved! Go to Solution.
You could try
Materials 1 & 2 =
VAR mat1 =
CALCULATETABLE ( VALUES ( 'Table'[Product] ), 'Table'[Material] = "Material 1" )
VAR mat2 =
CALCULATETABLE ( VALUES ( 'Table'[Product] ), 'Table'[Material] = "Material 2" )
RETURN
COUNTROWS ( INTERSECT ( mat1, mat2 ) )
You could try
Materials 1 & 2 =
VAR mat1 =
CALCULATETABLE ( VALUES ( 'Table'[Product] ), 'Table'[Material] = "Material 1" )
VAR mat2 =
CALCULATETABLE ( VALUES ( 'Table'[Product] ), 'Table'[Material] = "Material 2" )
RETURN
COUNTROWS ( INTERSECT ( mat1, mat2 ) )
Amazing!, that works perfectly
Thanks for your help
Matt
User | Count |
---|---|
80 | |
78 | |
37 | |
34 | |
31 |
User | Count |
---|---|
93 | |
81 | |
60 | |
49 | |
49 |