Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
I'm relatively new to power query. I've been trying to convert this table
N | Actividad |
1 | Asegurar reportabilidad |
2 | Crear dashboard en Power BI |
2.1 | Creación del dashboard |
2.2 | Revisión |
2.3 | Aprobación |
3 | Estandarización |
3.1 | Actualizar documentación |
3.1.1 | Actualización |
3.1.2 | Revisión |
3.1.3 | Aprobación |
4 | Corregir |
4.1 | - |
4.2 | - |
into another one,
C1 | C2 | C3 |
Asegurar reportabilidad | - | - |
Crear dashboard en Power BI | Creación del dashboard | - |
Crear dashboard en Power BI | Revisión | - |
Crear dashboard en Power BI | Aprobación | - |
Estandarización | Actualizar documentación | Actualización |
Estandarización | Actualizar documentación | Revisión |
Estandarización | Actualizar documentación | Aprobación |
Corregir | - | - |
Corregir | - | - |
but I'm having some difficulties. Could you help me?
Thanks in advance.
= let a=Record.FromTable(#table({"Name","Value"},Table.ToRows(Table.TransformColumns(Source,{"N",Text.From})))) in Table.FromColumns(List.Zip(Table.ToList(Source,each let b=Text.Split(Text.From(_{0}),".") in List.Transform(List.Positions(b),each Record.Field(a,Text.Combine(List.FirstN(b,_+1),"."))))))
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.