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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
gcarrasco
Helper II
Helper II

Filtrar de una columna de una tabla, valores que NO aparece en otra columna de otra tabla?

Buenas tardes,

 

Necesito ayuda con lo siguiente que no se como solucionarlo y tampoco encuentro en el foro. Necesitaria la formula dax para lograrlo.

Tengo dos tablas de varias columnas. Necesitaria filtrar de la columna "Cod. Proyecto" de la tabla "imputación" los valores que NO aparecen en la columna "Numero" de otra tabla "Detalle INPO".

Adjunto imagenes de las columnas de cada tabla

Tabla "Detalle INPO"

gcarrasco_0-1751483016742.png

 

Tabla "Imputación"

gcarrasco_1-1751483068534.png

 

Muchas gracias!,

Saludos.

1 ACCEPTED SOLUTION
Syndicate_Admin
Administrator
Administrator

Hola @Syndicate_Admin

Desea filtrar proyectos en "Imputación" que NO aparecen en "Detalle INPO". Puede crear una tabla calculada si desea una tabla independiente que muestre solo estas filas
Filtered Projects = FILTER (
    Imputation,
    NOT Imputation[Cod. Project] IN VALUES ( 'INPO Detail'[Number] )
)
​

Si desea una columna calculada en Imputación que muestre VERDADERO/FALSO, puede filtrar la tabla visualmente usando esta columna.

Not In INPO = NOT Imputation[Cód. Proyecto] IN VALUES ( 'INPO Detail'[Numero] )
​


Gracias
Disha

Si esta solución te ha ayudado, considera marcarla como Aceptada y darle un Felicitaciones (Me gusta), ¡también ayuda a otros miembros de la comunidad!

View solution in original post

21 REPLIES 21
Syndicate_Admin
Administrator
Administrator

Hola Syndicate_Admin,

Nos ponemos en contacto con usted para ver si su problema se ha resuelto. Si has encontrado una solución, te animamos a que la compartas con la comunidad para ayudar a otras personas que se encuentren con el mismo problema. Si nuestra respuesta fue útil, considere marcarla como la solución aceptada para apoyar a la comunidad en general.

Si tienes más preguntas, no dudes en ponerte en contacto con la comunidad de Microsoft Fabric.

Gracias.

Hola que tal buen día?. Siempre me preguntan si ya fue resuelto mi problema, pero en todas mis consultas al foro, puse "accept as solution" la respuesta que me ayudó a resolver la duda. Pero siguen insistiendo con que marque la solucion.

Syndicate_Admin
Administrator
Administrator

Hola Syndicate_Admin,

Estamos haciendo un seguimiento para comprobar si su consulta ha sido resuelta. Si ha encontrado una solución, le rogamos que la comparta con la comunidad para ayudar a otras personas que se enfrentan a problemas similares.

Si nuestra respuesta fue útil, márquela como la solución aceptada, ya que esto beneficia a la comunidad en general.
Si tiene más preguntas, no dude en ponerse en contacto con la comunidad de Microsoft Fabric.

Gracias.

Hola que tal buen día?. Siempre me preguntan si ya fue resuelto mi problema, pero en todas mis consultas al foro, puse "accept as solution" la respuesta que me ayudó a resolver la duda. Pero siguen insistiendo con que marque la solucion.

Syndicate_Admin
Administrator
Administrator

Hola Syndicate_Admin,

Estamos haciendo un seguimiento para ver si su consulta ha sido resuelta. Si ha identificado una solución, le solicitamos amablemente que la comparta con la comunidad para ayudar a otros que enfrentan problemas similares.

Si nuestra respuesta fue útil, márquela como la solución aceptada, ya que esto ayuda a la comunidad en general.
Si tiene más preguntas, no dude en ponerse en contacto con la comunidad de Microsoft Fabric.

Gracias.

Hola que tal buen día?. Siempre me preguntan si ya fue resuelto mi problema, pero en todas mis consultas al foro, puse "accept as solution" la respuesta que me ayudó a resolver la duda. Pero siguen insistiendo con que marque la solucion.

gcarrasco
Helper II
Helper II

muchas gracias a todos!.

Syndicate_Admin
Administrator
Administrator

Gracias, @burakkaragoz, @Direct, por su respuesta.

Hola Syndicate_Admin,

Agradecemos su pregunta en el foro de la comunidad de Microsoft Fabric.

Encuentre la captura de pantalla adjunta y el archivo PBIX de muestra:

vpnarojumsft_0-1751534243710.png

Esperamos que esta información le ayude a resolver el problema. Si tiene más preguntas, no dude en preguntar a la comunidad de Microsoft Fabric.

Gracias.

Syndicate_Admin
Administrator
Administrator

Hola @Syndicate_Admin

Desea filtrar proyectos en "Imputación" que NO aparecen en "Detalle INPO". Puede crear una tabla calculada si desea una tabla independiente que muestre solo estas filas
Filtered Projects = FILTER (
    Imputation,
    NOT Imputation[Cod. Project] IN VALUES ( 'INPO Detail'[Number] )
)
​

Si desea una columna calculada en Imputación que muestre VERDADERO/FALSO, puede filtrar la tabla visualmente usando esta columna.

Not In INPO = NOT Imputation[Cód. Proyecto] IN VALUES ( 'INPO Detail'[Numero] )
​


Gracias
Disha

Si esta solución te ha ayudado, considera marcarla como Aceptada y darle un Felicitaciones (Me gusta), ¡también ayuda a otros miembros de la comunidad!

Syndicate_Admin
Administrator
Administrator

Hola @Syndicate_Admin ,

Si desea filtrar los valores de INPO Detail[Numero] que NO aparecen en Imputación[Cod_Proyecto], puede usar esta fórmula DAX para crear una tabla calculada:

FilteredINPO =
FILTER (
    'INPO Detail',
    NOT 'INPO Detail'[Numero] IN VALUES ( Imputation[Cod_Proyecto] )
)

Esto devolverá solo las filas de INPO Detail donde Numero no se encuentra en Imputation[Cod_Proyecto].

Si usas esta opción en un filtro de medida o visual, también puedes usar:

ISBLANK (
    LOOKUPVALUE (
        Imputation[Cod_Proyecto],
        Imputation[Cod_Proyecto],
        'INPO Detail'[Numero]
    )
)

Hazme saber si necesitas aplicar esta lógica dentro de una imagen o como parte de una medida, encantado de ayudarte más.

📘 Documento relacionado: https://learn.microsoft.com/en-us/dax/filter-function-dax

Si mi respuesta resolvió su consulta, por favor márquela como la Solución Aceptada para ayudar a otros. Además, le agradecería que me felicitara si le resultó útil mi respuesta.

Traducción y edición de textos con apoyo de IA

Good afternoon

I need help with the following that I don't know how to solve and I can't find it in the forum. You would need the dax formula to achieve this.

I have two multi-column tables. You would need to filter from the column "Cod. Project" of the "imputation" table the values that do NOT appear in the "Number" column of another table "INPO Detail".

I attach images of the columns of each table

Table "INPO Detail"

gcarrasco_0-1751483016742.png

Table "Imputation"

gcarrasco_1-1751483068534.png

Thanks a lot!

Best regards.

Hi Syndicate_Admin,

We are reaching out to see if your issue has been resolved. If you have discovered a solution, we encourage you to share it with the community to assist others encountering the same problem.If our response was useful, please consider marking it as the accepted solution to support the broader community.

If you have any additional questions, don’t hesitate to get in touch with the Microsoft Fabric community.

Thank you.

Hello how about good day?. They always ask me if my problem has been solved, but in all my queries to the forum, I put "accept as solution" the answer that helped me solve the doubt. But they continue to insist that he mark the solution.

Hi Syndicate_Admin,

We are following up to check if your query has been resolved. If you have found a solution, we kindly request you to share it with the community to help others facing similar issues.

If our response was helpful, please mark it as the accepted solution, as this benefits the wider community.
Should you have any further queries, please feel free to contact the Microsoft Fabric community.

Thank you.

Hello how about good day?. They always ask me if my problem has been solved, but in all my queries to the forum, I put "accept as solution" the answer that helped me solve the doubt. But they continue to insist that he mark the solution.

Hi Syndicate_Admin,

We are following up to see if your query has been resolved. Should you have identified a solution, we kindly request you to share it with the community to assist others facing similar issues.

If our response was helpful, please mark it as the accepted solution, as this helps the broader community.
Should you have any further queries, kindly feel free to contact the Microsoft Fabric community.

Thank you.

Hello how about good day?. They always ask me if my problem has been solved, but in all my queries to the forum, I put "accept as solution" the answer that helped me solve the doubt. But they continue to insist that he mark the solution.

Thank you very much to everyone!

Thankyou, @burakkaragoz@Direct, for your response.

Hi Syndicate_Admin,

We appreciate your question on the Microsoft Fabric Community Forum.

Please find the attached screenshot and sample PBIX file:

vpnarojumsft_0-1751534243710.png

We hope this information helps you resolve the issue. If you have any more questions, please feel free to ask the Microsoft Fabric community.

Thank you.

Hi @Syndicate_Admin 

You want to filter projects in "Imputation" that do NOT appear in "INPO Detail". You can create a calculated table if you want a separate table showing only these rows
Filtered Projects = FILTER (
    Imputation,
    NOT Imputation[Cod. Project] IN VALUES ( 'INPO Detail'[Number] )
)
​

If you want a calculated column in Imputation showing TRUE/FALSE, then you can filter the table visually using this column.

Not In INPO = NOT Imputation[Cod. Proyecto] IN VALUES ( 'INPO Detail'[Numero] )
​


Thanks
Disha 

If this solution helped, please consider marking it as Accepted and giving it a Kudos (Like) — it helps others in the community too!

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Top Solution Authors
Top Kudoed Authors