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
QuentinDSC
Frequent Visitor

Use column value with operator IN

Hi all,

 

In order to use a the operator "IN" in a DAX measure I need a list after that operator.

I am trying to use a string stored in my model as a list. How could I convert a string into a list in a measure?

 

The function we want to use: PRODUCT_TABLE[Name] IN Product_List

  • If we use constant values it works : PRODUCT_TABLE[Name] IN {"A";"B";"C"} : OK
  • If we use data from a column it doesn't works : PRODUCT_TABLE[Name] IN Product_List with Product_List = A;B;C from model

 

 

 

 

1 ACCEPTED SOLUTION
RickPowerBI
Helper I
Helper I

Hi @QuentinDSC,

 

Have you tried using FIND or Search instead of IN?

 

FIND(<find_text>, <within_text>[, [<start_num>][, <NotFoundValue>]])

FIND is case-sensitive.

 

SEARCH(<find_text>, <within_text>[, [<start_num>][, <NotFoundValue>]])

This function does not check uppercase and lowercase letters.

View solution in original post

3 REPLIES 3
QuentinDSC
Frequent Visitor

I managed to do what I wanted to. Thank you all 🙂

RickPowerBI
Helper I
Helper I

Hi @QuentinDSC,

 

Have you tried using FIND or Search instead of IN?

 

FIND(<find_text>, <within_text>[, [<start_num>][, <NotFoundValue>]])

FIND is case-sensitive.

 

SEARCH(<find_text>, <within_text>[, [<start_num>][, <NotFoundValue>]])

This function does not check uppercase and lowercase letters.

harshnathani
Community Champion
Community Champion

HI @QuentinDSC ,

 

Please refer to this article from SQL BI.

 

https://www.sqlbi.com/articles/the-in-operator-in-dax/

 

 

Regards,

Harsh Nathani

Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)

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.

Top Solution Authors