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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
ragnezza
Frequent Visitor

List.Contains to Lookup for a value within the same table

Hello, I'm trying to come up with the M code to find if the value from one field is also in another field (equivalent of a VLOOKUP in Excel) within the same table. The table has two columns (A and B) and I want to create a third one (flag) that shows 'Yes' if the value in Column B is also in Column A.

 

Column AColumn Bflag
A01B01No
A02B01No
A03A01Yes
A04B01No
A05A02Yes

 

I added a Custom Column in Power Query with the following M code:

flag =
if  List.Contains( [Column A] , [Column B] ) then "Yes" else "No"

The 'flag' field creates but a bunch of 'Errors' show, and when I click on any error they show the following message:
Expression.Error: We cannot convert the value "A03" to type List.
Details:
Value=A03
Type=[Type]

 

Do I need to use a function to format either [Column A] or [ Column B] ? Or should I use a function different from List.Contains ?

Also, I cannot create this 'flag' in the front end with DAX (which would be much easier) because this 'flag' is already used as a key for a join within the Table M code.

 

Any suggestion will be greatly appreciated, thanks!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Write it like

 

if List.Contains(List.Buffer([PreviousStepName[Column B]), [Column A]) then "Yes" else "No"

 

--Nate

View solution in original post

2 REPLIES 2
ragnezza
Frequent Visitor

that's amazing, it's working.

 

Thanks!

Anonymous
Not applicable

Write it like

 

if List.Contains(List.Buffer([PreviousStepName[Column B]), [Column A]) then "Yes" else "No"

 

--Nate

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors