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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
Dicken
Post Prodigy
Post Prodigy

M code Custom functions dealing with lists

  
hi, I have had this problem a few times and don't really understand it, 

If I  define an custom list; ; 

  let alist = {"a acc a", "abc def", "abc dd dda", "abc a bc" } in alist

 

  and then a custom funciton ; 

( listA, valueA )=> 
    List.Contains( listA, valueA, ( x ,y )=> 
   Text.Contains( x, y ) )

 

i can invoke that on the list   so ;    Source = function;  Source (Alist, "a") - = true , 


but if I want to use the custom function dialog box that is generated I cannot refer to the list,  it is not recognesed, 
I have to convert to a table , then  define the  list parameter as a list , I can then select the table / table column to use as a list? 
this seems a very odd so 

let alist = {"a acc a", "abc def", "abc dd dda", "abc a bc" } in 
Table.FromList( alist, Splitter.SplitByNothing(), {"A"} )

(  listA as list , valueA as text  )=> 
    List.Contains( listA, valueA, ( x ,y )=> 
   Text.Contains( x, y ) )

 

Can anyone explain why I cant' just refer to the list  directly  ?  or suggest other ways around this problem? 

Richars

1 ACCEPTED SOLUTION
PwerQueryKees
Super User
Super User

Just an ommision in the UI. If it is important to you, have a search. I recall something similar passing here, but can't find it myself... It can be worked around, but some effort is involved...

View solution in original post

2 REPLIES 2
Dicken
Post Prodigy
Post Prodigy

Thanks I just wondered if  overlooking somthing obvoious, thanks for taking the time to resond. 

PwerQueryKees
Super User
Super User

Just an ommision in the UI. If it is important to you, have a search. I recall something similar passing here, but can't find it myself... It can be worked around, but some effort is involved...

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

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.