Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hola , Por favor, ayúdame
Quiero escribir en DAX , el código SQL equivalente está a continuación;
SELECT * de la tabla donde table[column]<>'%After%'
hola @schoden
Utilice esta lógica para crear una nueva tabla
New Table = FILTER('Table', SEARCH("After", 'Table'[Column],,0)=0)
https://docs.microsoft.com/en-us/dax/search-function-dax
saludos
Lin
@az38 Hola Gracias por la respuesta
Pero no devolvió el resultado correcto.
En su lugar, utilicé :
FILTER(ALL(TABLE), Table[Column] <>"After% " ) --- funcionó para NO COMO ALGO
Pero cuando escribí al revés, no mostraba valores
FILTER(ALL(TABLE), Table[Column] ?"After% " ) --- no funcionó para LIKE SOMETHING