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

Dax with contains and not contains

1231232.png

 

i'm doing it worng =/

 

 

I have to do a SQL query in DAX

 

(text not like '%ORD 9%' and text  not like '%ORD 6%' and text  not like '%Reclassificação%' and text  not like '%TRANSITORIA%' and(text  <> '' or text_cab like '%tarifa%'))

 

Gratz!

1 ACCEPTED SOLUTION

SEARCH("ORD 9", Table[Text], 1, -1) < 0 &&  SEARCH("ORD 6", Table[Text], 1, -1) < 0 && SEARCH("Reclassificação", Table[Text], 1, -1) < 0 && SEARCH("TRANSITORIA", Table[Text], 1, -1) < 0 && (Table[Text] <> "" || SEARCH("tarifa", Table[Text_Cab], 1, -1) > 0)

View solution in original post

3 REPLIES 3
srinivt
Employee
Employee

CONTAINS function in DAX is for searching a table for a presence of a row when certain search-columns contain the specified values. Think of this as a special version of excel's VLookup function that returns a boolean true or false value, when there is such a row. 

 

You should be using SEARCH or FIND function in DAX for performing text contains check. SEARCH is case-insensitive and FIND is case-sensitive. 

Anonymous
Not applicable

Can You Show me?

I'm a newbie in PBI.

 

Gratz!

SEARCH("ORD 9", Table[Text], 1, -1) < 0 &&  SEARCH("ORD 6", Table[Text], 1, -1) < 0 && SEARCH("Reclassificação", Table[Text], 1, -1) < 0 && SEARCH("TRANSITORIA", Table[Text], 1, -1) < 0 && (Table[Text] <> "" || SEARCH("tarifa", Table[Text_Cab], 1, -1) > 0)

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.