The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 | |||
Fecha | Alumno | Materia | Comentario |
01/01/2023 | CLR | A | Puntualidad |
01/01/2023 | CLR | A | Tarea |
01/01/2023 | CLR | A | Retraso Ejercicio |
01/01/2023 | MRGM | A | Puntualidad |
01/01/2023 | MRGM | A | Tarea |
01/01/2023 | MRGM | A | Ejercicio |
Result | |||
Fecha | Alumno | Materia | Comentario |
01/01/2023 | CLR | A | Puntualidad, Tarea, Retraso Ejercicio |
01/01/2023 | MRGM | A | Puntualidad, Tarea, Ejercicio |
Thank you very much in advance!
Solved! Go to Solution.
@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])
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@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])
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
35 | |
14 | |
12 | |
9 | |
7 |