Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Syndicate_Admin
Administrator
Administrator

Eliminar un total de la matriz

¿Hay alguna manera de eliminar el total en el cuadro rojo?

aritz001_0-1677551603644.png

3 REPLIES 3
Syndicate_Admin
Administrator
Administrator

@aritz001 ,

Tienes que escribir una medida que haga eso. A continuación se muestra solo una muestra para ilustrar y los datos pueden no tener sentido, pero logra eliminar el total de un elemento de columna en particular. Reemplace Dates[Month Name] ) = "July" con su campo de columna y NOT ( HASONEVALUE ( Dates[Date] ) ) con su campo de fila.

Remove total for July =
IF (
    SELECTEDVALUE ( Dates[Month Name] ) = "July"
        && NOT ( HASONEVALUE ( Dates[Date] ) ),
    BLANK (),
    COUNT ( Dates[Month Short] )
)

Como puede ver a continuación, el total se elimina para julio, pero las filas todavía tienen los números.

danextian_0-1677553081595.png

Aquí está la fórmula actual y tener problemas para hacer lo que hiciste

Recuento total de personal = SUMX(RESUMIR('tblTimeCombined_TimeDetail',
'tblTimeCombined_TimeDetail'[Fecha],"count", DISTINCTCOUNT ( 'tblTimeCombined_TimeDetail'[Staff ID] ) ),[count])

Syndicate_Admin
Administrator
Administrator

Hasta donde yo sé, no puedes

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

Top Solution Authors