Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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"
Solved! Go to Solution.
List.Contains(tRefreshProducts[Products],[All Products],(x,y)=>Text.Contains(y,x))or
List.ContainsAny(tRefreshProducts[Products],Text.Split([All Products],";"))
List.Contains(tRefreshProducts[Products],[All Products],(x,y)=>Text.Contains(y,x))or
List.ContainsAny(tRefreshProducts[Products],Text.Split([All Products],";"))
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.
Proud to be a Super User!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.