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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
Syndicate_Admin
Administrator
Administrator

Cómo ver dos columnas con CONTAINS STRING

Hola

Necesito agregar dos condiciones a una instrucción CONTAINS STRING pero no funciona. Agradecería si alguien puede ayudar, por favor.

Se vería algo como esto

Columna = IF( CONTAINSSTRING(('Tabla '[Columna] "A" && CONTAINSSTRING ('Tabla'[Columna] "B") "Y", "Z" ))
¡¡Gracias!!
1 ACCEPTED SOLUTION

Hay @Carrhill ,

Pruebe esto en su lugar:

Output = 
VAR _FindString01 = SEARCH("ABC", [Column1], 1, 0)
VAR _FindString02 = SEARCH("XYZ", [Column2], 1, 0)

RETURN IF(_FindString01 > 0 && _FindString02 > 0, "X", "Y")

Salida de ejemplo:

hnguy71_0-1651095551727.png

View solution in original post

4 REPLIES 4
Raczo
New Member

Podrias usar tambien
= IF(CONTAINSSTRING(('Tabla'[Columna],"A")||CONTAINSSTRING ('Tabla'[Columna],"B"),"Y", "Z" )

 

Syndicate_Admin
Administrator
Administrator

@Carrhill , Prueba como

Columna = IF( CONTAINSSTRING('Tabla '[Columna] "A") || CONTAINSSTRING ('Tabla'[Columna] "B") || CONTAINSSTRING ('Tabla'[Columna] "Y")|| CONTAINSSTRING ('Tabla'[Columna] "Z") )

Hola @amitchandak ,

¡Gracias! Has resuelto el problema planteado. Sin embargo, no fui del todo claro en mi pregunta.

Este es mi objetivo...

Si la columna 1 contiene "abc" y la columna 2 contiene "xyz", devuelva X, de lo contrario Y

¿Hay alguna manera de hacer esto? ¡Gracias por su ayuda!

Hay @Carrhill ,

Pruebe esto en su lugar:

Output = 
VAR _FindString01 = SEARCH("ABC", [Column1], 1, 0)
VAR _FindString02 = SEARCH("XYZ", [Column2], 1, 0)

RETURN IF(_FindString01 > 0 && _FindString02 > 0, "X", "Y")

Salida de ejemplo:

hnguy71_0-1651095551727.png

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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

Top Solution Authors
Top Kudoed Authors