Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi
I have a matrix and I want to bring in a sum of distinct location from an other table
i.e. I want to return that there is 5 cubes listed in a Location tables (in the colume called Column)
The line between the tables is Location UID in which Location UID is unique and contains the location type
I have a measure to count DISTINCT location but you can’t add a measure to a row in a Power BI matric, any easy work around
Solved! Go to Solution.
@Garbo62 ,
Create a Calculated Column:
Go to the Data view in Power BI.
Select the table where you want to add the calculated column.
Click on New Column and enter the following DAX formula to count the distinct locations:
DAX
DistinctLocationCount =
CALCULATE(
DISTINCTCOUNT(Location[Location UID]),
ALLEXCEPT(Location, Location[Location Type])
)
This formula calculates the distinct count of Location UID for each Location Type.
Use the Calculated Column in Your Matrix:
Go to the Report view.
Add a matrix visual to your report.
Drag the Location Type to the rows of the matrix.
Drag the DistinctLocationCount calculated column to the values of the matrix.
This way, you will have a matrix that shows the count of distinct locations for each location type.
Proud to be a Super User! |
|
Brillent Thanks works a treat.
@Garbo62 ,
Create a Calculated Column:
Go to the Data view in Power BI.
Select the table where you want to add the calculated column.
Click on New Column and enter the following DAX formula to count the distinct locations:
DAX
DistinctLocationCount =
CALCULATE(
DISTINCTCOUNT(Location[Location UID]),
ALLEXCEPT(Location, Location[Location Type])
)
This formula calculates the distinct count of Location UID for each Location Type.
Use the Calculated Column in Your Matrix:
Go to the Report view.
Add a matrix visual to your report.
Drag the Location Type to the rows of the matrix.
Drag the DistinctLocationCount calculated column to the values of the matrix.
This way, you will have a matrix that shows the count of distinct locations for each location type.
Proud to be a Super User! |
|
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
76 | |
73 | |
42 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
48 | |
43 |