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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
pipkinp86
Regular Visitor

Report Builder - Matrix with text without aggregation

I need to create the following report, the idea is that students will attend to all classes but in any day, the report needs to group who attend to what in a specific day, I'm using power BI report builder, but it's not working. I did was able to make it work on Power BI using 

Measure: Student List = CONCATENATEX('Schedule',[Student],UNICHAR(10) )

Matrix with Class on Rows, Day on Columns  and [Student List] on Values.

 

But I don't know how to make it work on Report Builder

 

Below is the data table and what I wanted to look like

 

 

table1.jpgreport.jpg

1 ACCEPTED SOLUTION
pipkinp86
Regular Visitor

this is how I ended up fdoing it:

 

EVALUATE

(

    SUMMARIZE(

      'Schedule',

        'Schedule'[day],

        'Schedule'[class],

        "StudentList", CONCATENATEX(VALUES('Schedule'[Student]), 'Schedule'[Student],", " & UNICHAR(10))

    )

)

View solution in original post

3 REPLIES 3
pipkinp86
Regular Visitor

this is how I ended up fdoing it:

 

EVALUATE

(

    SUMMARIZE(

      'Schedule',

        'Schedule'[day],

        'Schedule'[class],

        "StudentList", CONCATENATEX(VALUES('Schedule'[Student]), 'Schedule'[Student],", " & UNICHAR(10))

    )

)

d_gosbell
Super User
Super User


@pipkinp86 wrote:

But I don't know how to make it work on Report Builder

 


The identical approach should also work in Report Builder. If you use the [Class] and [Day] columns and the [Student List] measure you should be able to create a similar matrix output to the one you did in Power BI desktop.

Hello, I was not able to use the measure within a matrix in Power BI report builder, I found another way to make it work, adding the measure withing the query, but if you can give me more details on how to use the first Power BI desktop approach, using the measure I created on power bi desktop, I would appreciate it.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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