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,
teniendo la siguiente matriz, ¿como puedo mostrar solo el total de la ultima columna y ocultar la de las otras?
Gracias.
Solved! Go to Solution.
Hola @Syndicate_Admin ,
Para lograr el resultado deseado, utilice la función ISINSCOPE, modifique sus medidas para que se vean como se muestra a continuación:
Primera fecha: Fecha_Pedido =
IF(
ISINSCOPE(YourTable[Document No_]),
//PASTE HERE THE CALCULATIONS OF YOUR MEASURE Primera fecha: Fecha_Pedido
,BLANK()
)
Primera fecha: Shipment Date =
IF(
ISINSCOPE(YourTable[Document No_]),
//PASTE HERE THE CALCULATIONS OF YOUR MEASURE Primera fecha: Shipment Date
,BLANK()
)
Ultima fecha: Sell-to Customer No_ =
IF(
ISINSCOPE(YourTable[Document No_]),
//PASTE HERE THE CALCULATIONS OF YOUR MEASURE Ultima fecha: Sell-to Customer No_
,BLANK()
)
@Syndicate_Admin Puede utilizar el color de fuente blanco para las columnas que no desea mostrar en total. Consulte la siguiente captura de pantalla.
Hola @Syndicate_Admin ,
Para lograr el resultado deseado, utilice la función ISINSCOPE, modifique sus medidas para que se vean como se muestra a continuación:
Primera fecha: Fecha_Pedido =
IF(
ISINSCOPE(YourTable[Document No_]),
//PASTE HERE THE CALCULATIONS OF YOUR MEASURE Primera fecha: Fecha_Pedido
,BLANK()
)
Primera fecha: Shipment Date =
IF(
ISINSCOPE(YourTable[Document No_]),
//PASTE HERE THE CALCULATIONS OF YOUR MEASURE Primera fecha: Shipment Date
,BLANK()
)
Ultima fecha: Sell-to Customer No_ =
IF(
ISINSCOPE(YourTable[Document No_]),
//PASTE HERE THE CALCULATIONS OF YOUR MEASURE Ultima fecha: Sell-to Customer No_
,BLANK()
)
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.