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

Did you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now

Reply
OleMcDonald
Helper I
Helper I

List.Contains True/False

My [All Products] column has a number of semi-colon delimited values. 

The individaul values may appear in my tRefreshProducts table

 

I am trying to create a new column with "True" if my [All Products] contains any of my tRefreshProducts[Products] and false if not.

 

This is throwing an Eof expected error

 

 

 

 

List.Contains(tRefreshProducts[Products],[All Products]), "True", "False"

 

 

 

 

1 ACCEPTED SOLUTION
wdx223_Daniel
Community Champion
Community Champion

 

List.Contains(tRefreshProducts[Products],[All Products],(x,y)=>Text.Contains(y,x))

or

List.ContainsAny(tRefreshProducts[Products],Text.Split([All Products],";"))

 

View solution in original post

2 REPLIES 2
wdx223_Daniel
Community Champion
Community Champion

 

List.Contains(tRefreshProducts[Products],[All Products],(x,y)=>Text.Contains(y,x))

or

List.ContainsAny(tRefreshProducts[Products],Text.Split([All Products],";"))

 

PhilipTreacy
Super User
Super User

Hi @OleMcDonald 

If your [Products] and [All Products] columns contain text then try this

 

if List.ContainsAny(Text.ToList(tRefreshProducts[Products]), Text.ToList([All Products])) then true else false

 

 

If the columns already contain lists then use this

 

if List.ContainsAny(tRefreshProducts[Products], [All Products]) then true else false

 

 

If neither of these work please post sample data showing the contents of the columns.

regards

Phil


If I answered your question please mark my post as the solution.
If my answer helped solve your problem, give it a kudos by clicking on the Thumbs Up.



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors