Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Garbo62
Helper III
Helper III

How to add a calculated value a row in a Power BI Matrix

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

Garbo62_0-1724321625997.png

 

1 ACCEPTED SOLUTION
bhanu_gautam
Super User
Super User

@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.

 




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






View solution in original post

2 REPLIES 2
Garbo62
Helper III
Helper III

Brillent Thanks works a treat.

bhanu_gautam
Super User
Super User

@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.

 




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

Find out what's new and trending in the Fabric Community.