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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Eliminación de la fila vacía de la tabla calculada

Querida comunidad,

¡Espero que este mensaje te encuentre bien y saludable!

Me gustaría tener una tabla de dimensiones basada en 1 columna en mi tabla de hechos como se muestra a continuación:

Capture.PNG

El trato es que sé que hay celdas vacías en esa columna, pero no las necesito.

Mi fórmula DAX parece no funcionar tan bien.

¿Puede ayudarme por favor a deshacerse de los valores vacíos en esta tabla calculada?

Con el debido respeto,

Atanas

1 ACCEPTED SOLUTION
themistoklis
Community Champion
Community Champion

@Atanas

Por favor, pruebe cualquiera de las siguientes opciones:

Option 1:
FILTER( SUMMARIZE('America', 'America'[Risk Code]), 'America'[Risk Code]<>BLANK() )

Option 2:
FILTER( DISTINCT('America'[Risk Code]), 'America'[Risk Code]<>BLANK() )

Option 3:
CALCULATETABLE( DISTINCT('America'[Risk Code]), 'America'[Risk Code]<>BLANK() )

Option 4:
Filter (SUMMARIZE ( ​America, America[Risk Code] ) , NOT ( ISBLANK ( [Risk Code] ) ) )

View solution in original post

4 REPLIES 4
themistoklis
Community Champion
Community Champion

@Atanas

Por favor, pruebe cualquiera de las siguientes opciones:

Option 1:
FILTER( SUMMARIZE('America', 'America'[Risk Code]), 'America'[Risk Code]<>BLANK() )

Option 2:
FILTER( DISTINCT('America'[Risk Code]), 'America'[Risk Code]<>BLANK() )

Option 3:
CALCULATETABLE( DISTINCT('America'[Risk Code]), 'America'[Risk Code]<>BLANK() )

Option 4:
Filter (SUMMARIZE ( ​America, America[Risk Code] ) , NOT ( ISBLANK ( [Risk Code] ) ) )

Anonymous
Not applicable

@themistoklis

¡Gracias! ¡Todos funcionaron!

Elegí ese ya que no quiero usar iteradores:

Código de riesgoDim ?
CALCULATETABLE(
DISTINCT(
América[Código de riesgo]
),
América[Código de riesgo]
<> BLANK()
)
¡Que dios te bendiga! Tú y @AllisonKennedy
¡Gracias a ambos por su ayuda!
¡Cuídate!
Atanas
AllisonKennedy
Super User
Super User

Su fila en blanco es probablemente
=""
en lugar de estar realmente en blanco. Puede intentar agregar un FILTER( tabla, columna <>"") también a su DAX, aunque le sugiero crear las tablas Dimension en Power Query.

Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

Anonymous
Not applicable

@AllisonKennedy ,

Muchas gracias por su respuesta rápida, pero cuando lo agregué obtengo la siguiente tabla, que es un poco diferente:

Capture.PNG

Además, estoy de acuerdo en que las tablas de dimensiones deben crearse en Power Query, pero realmente me gusta intentar hacerlo con DAX por el bien de esta tarea,

Atanas

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.