Cannot compare List with Text

HYSSOTEC_0-1684689151328.png

ME PUEDEN AYUDAR A SOLCUONAR EL SIGUIENTE ERROR.

QUIERO MOSTRAR LAS HABITACIONES CON ESTADO DE LIBRE.

thanks

0 2 301
2 REPLIES 2

SELECT not IN

 

CONTAINS(HABITACIONES[NOMBRE], "LIBRE")

In this example, HABITACIONES[NOMBRE] represents the list of names from the HABITACIONES table, and "LIBRE" is the text value you want to compare against. The CONTAINS() function will return true if any of the names in the list contain the text "LIBRE".

Make sure to adjust the table and column names according to your specific data structure.

IN([NOMBRE], SELECT(HABITACIONES[HABITACIONES], [ESTADO] = "LIBRE"))

 

 

Top Labels in this Space