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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Analitika
Post Prodigy
Post Prodigy

Mostrar espacios en blanco solo en gráficos de fechas

Ahora tengo medida

creó para la segmentación de fecha para ignorar la fecha seleccionada y mostrar siempre espacios en blanco

194 =
CALCULATE (
SUM ( 'Table'[Sum] ),
FILTER (
ALL('Table'),
'Table'[State] IN { "on", "edit" } &&
ISBLANK('Table'[date])
)
)

Pero cuando pongo la cortadora con los usuarios, se adjunta a cada usuario, que tienen fecha en blanco y suma en blanco, la misma suma

Pero necesito adjuntar sólo si el nombre de usuario está en blanco

Entonces, ¿cómo escribir medida? Creo que debe ser un poco negro como

194 =
CALCULATE (
SUM ( 'Table'[Sum] ),
FILTER (
ALL('Table'[date]),
'Table'[State] IN { "on", "edit" } &&
ISBLANK('Table'[date])
)
)
1 REPLY 1
amitchandak
Super User
Super User

@Analitika, inténtelo sin todo

194 =
CALCULATE (
SUM ( 'Table'[Sum] ),
FILTER (
('Table'[date]),
'Table'[State] IN { "on", "edit" } &&
ISBLANK('Table'[date])
))
//if need add removefilters 

 194 =
CALCULATE (
SUM ( 'Table'[Sum] ),
FILTER (
('Table'[date]),
'Table'[State] IN { "on", "edit" } &&
ISBLANK('Table'[date])
),removefilters('Table'[date]))

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.