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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Cipriano
Helper III
Helper III

Table scan and joining column data in a sigle value.

Hello, everyone!

To check if it is possible to read a data table to obtain a summary view of the data, I basically need to integrate data using a table scan, joining the values of one of its columns:

 

Table Orginal   
    
FechaAlumnoMateriaComentario
01/01/2023CLRAPuntualidad
01/01/2023CLRATarea
01/01/2023CLRARetraso Ejercicio
01/01/2023MRGMAPuntualidad
01/01/2023MRGMATarea
01/01/2023MRGMAEjercicio

 

Result   
FechaAlumnoMateriaComentario
01/01/2023CLRAPuntualidad, Tarea, Retraso Ejercicio
01/01/2023MRGMAPuntualidad, Tarea, Ejercicio

 

Thank you very much in advance!

1 ACCEPTED SOLUTION
DallasBaba
Skilled Sharer
Skilled Sharer

@Cipriano Yes, it is possible to group and concatenate text values using dax expression. Your final report will display the summarized view of the data with comments concatenated for each unique combination of "Fecha," "Alumno," and "Materia."

Concatenated Comments =
VAR GroupedData =
SUMMARIZE(
OrginalTable,
OrginalTable[Fecha],
OrginalTable[Alumno],
OrginalTable[Materia],
"ConcatenatedComments",
CONCATENATEX(VALUES(OrginalTable), OrginalTable[Comentario], ", ")
)
RETURN
MAXX(GroupedData, [ConcatenatedComments])



tdallasmsft_0-1697576843539.png


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Thanks
Dallas

View solution in original post

1 REPLY 1
DallasBaba
Skilled Sharer
Skilled Sharer

@Cipriano Yes, it is possible to group and concatenate text values using dax expression. Your final report will display the summarized view of the data with comments concatenated for each unique combination of "Fecha," "Alumno," and "Materia."

Concatenated Comments =
VAR GroupedData =
SUMMARIZE(
OrginalTable,
OrginalTable[Fecha],
OrginalTable[Alumno],
OrginalTable[Materia],
"ConcatenatedComments",
CONCATENATEX(VALUES(OrginalTable), OrginalTable[Comentario], ", ")
)
RETURN
MAXX(GroupedData, [ConcatenatedComments])



tdallasmsft_0-1697576843539.png


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Thanks
Dallas

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.