March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hola a todos
No tengo acceso al editor de consultas (así que DAX) y tengo la siguiente tabla1
Tipo | Fase 1 | Fase 2 | Fase3 |
Tipo1 | 12 | ||
Tipo2 | 10 | ||
Tipo3 | 8 | 14 |
Quiero la siguiente tabla2 (pivote en colums Phase1/2/3 y suma en Datos agrupando en tipo).
Fases | Datos |
Fase 1 | 12 |
Fase 2 | 18 |
Fase3 | 14 |
Por el momento, me disqué :
Fases | Datos |
Fase 1 | 12 |
Fase 2 | 10 |
Fase 2 | 8 |
Fase3 | 14 |
con el siguiente código:
Table2 =
FILTER(
UNION(
SELECTCOLUMNS(Table1;"Phases";"Phase1";"Data";Table1[Phase1]);
SELECTCOLUMNS(Table1;"Phases";"Phase2";"Data";Table1[Phase2]);
SELECTCOLUMNS(Table1;"Phases";"Phase3";"Data";Table1[Phase3])
);[Data]<>blank()
)
Pero no veo cómo conseguir una sola línea para la fase 2.
Si alguien tiene una idea, por favor comparta !
saludos
Cr
Solved! Go to Solution.
@CR en lugar de selectcolumns use summarize
SUMMARIZE( FILTER ( Table, Table[Phase2] <> BLANK()),"Phases", "Phase2", "Data", SUM ( Table[Phase2)))
hacerlo para cada fase.
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@CR en lugar de selectcolumns use summarize
SUMMARIZE( FILTER ( Table, Table[Phase2] <> BLANK()),"Phases", "Phase2", "Data", SUM ( Table[Phase2)))
hacerlo para cada fase.
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
gracias @parry2k
funciona bien !
Table2 =
UNION(
SUMMARIZE(Table1;"Phase";"Phase1";"Data";SUM(Table1[Phase1]));
SUMMARIZE(Table1;"Phase";"Phase2";"Data";SUM(Table1[Phase2]));
SUMMARIZE(Table1;"Phase";"Phase3";"Data";SUM(Table1[Phase3]))
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.