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
todo
Extremadamente nuevo en power bi. Estoy buscando crear una nueva tabla a partir de una tabla existente. Pero quiero excluir cualquier línea con los valores "en producción", "Enviado" y "Entregado" en la columna de estado del pedido. He intentado utilizar resumir, pero no está funcionando para mí. Cualquier ayuda sería apreciada.
Orden | Cliente | Estado del pedido |
1 | Autobody de Fred | En producción |
2 | Autobody de Fred | Pedido atrasado |
3 | Autobody de Fred | Embalaje |
4 | Autobody de Fred | Nuevo |
5 | Autobody de Fred | Pedido atrasado |
6 | Autobody de Fred | Nuevo |
7 | Autobody de Fred | Enviado |
8 | Autobody de Fred | Entregado |
9 | Autobody de Fred | En producción |
10 | Autobody de Fred | Material corto |
filter(Table, not(table[Order Status] in 'In Production","Shipped","Delivered" ?))
O
calculatetable(Table,filter(Table, not(table[Order Status] in 'In Production","Shipped","Delivered" ?))
Hola @tjeffries,
Puede hacer esto usando el Resumir, el código siguiente debe funcionar;
New Table = FILTER(
SUMMARIZE('Table','Table'[Order],
"customer", MAX('Table'[Customer]),
"Order Status", MAX('Table'[Order Status])
)
, [Order Status] <> "In Production" && [Order Status] <> "Shipped" && [Order Status] <> "Delivered")
Me preguntaría en cuanto al clima que necesita para utilizar esto? no podría dupicate la tabla y añadir filtros de nivel visual? o incluso duplicarlo Consultar y aplicar los filtros en el nivel de consulta?
Si necesitas algún consejo hazme saber
Dobby
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.