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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Anonymous
Not applicable

Power BI Matrix Table with Customized Columns and Rows

I have a table taken from Tableau (see sample data below). I have tried to replicate this using a table and amatrix table but neither worked. Matrix table would not work because I still need the columns all displayed (Job Posting Title, Hiring Manager, Candidate Name, Source, Applied Date). 

The main issue is to list Interviewer as column and the Average Interview Rating from all the interviewers Req ID for each candidate (row). 

 

       Interviewer
Req IDJob Posting TitleHiring ManagerCandidate NameSourceApplied DateAverage Interview RatingAmy WhiteAmanda SmithColin Wong
A1234Software EngineerAmy WhiteJoe SmithIndeed1/1/20243333
A1234Software EngineerAmy WhiteSandy SoulLinkedin3/1/20242.53 2

 

Any help would be greatly appreciated! 

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

 

Please try:

 

Create a custom column in Power Query:

Table.AddColumn(#"Changed Type", "Average", each List.Average(List.Select({[Amy White], [Amanda Smith], [Colin Wong]}, each _ <> 0)), type number )

vhuijieymsft_0-1717122483010.png

 

Click Table.

vhuijieymsft_1-1717122483011.png

 

Select the three columns for unpivot.

vhuijieymsft_2-1717122517982.png

 

Exit Power Query and place the fields as shown below:

vhuijieymsft_3-1717122517983.png

 

Set up the matrix as shown below:

vhuijieymsft_4-1717122531720.png

 

The final page result is shown below:

vhuijieymsft_5-1717122531722.png

 

The pbix file is attached.

 

If you have any further questions please feel free to contact me.

 

Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

Anonymous
Not applicable

Hi there,

Thank you for providing a solution. I was not being clear in my original post, but the source data looks like this:

Req IDJob Posting TitleHiring ManagerCandidate NameSourceApplied DateInterviewerRating
A1234Software EngineerAmy WhiteJoe SmithIndeed1/1/2024Amy White3
      Amanda Smith3
      Colin Wong3
A1234Software EngineerAmy WhiteSandy SoulLinkedin3/1/2024Amy White3
      Amanda Smith 
      Colin Wong2

 

And the table visual I'm trying to build is this:

      Interviewer
Req IDJob Posting TitleHiring ManagerCandidate NameSourceApplied DateAverage Interview RatingAmy WhiteAmanda SmithColin Wong
A1234Software EngineerAmy WhiteJoe SmithIndeed1/1/20243333
A1234Software EngineerAmy WhiteSandy SoulLinkedin3/1/20242.53 2

 

I think the process would be different in Power Query?

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors