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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Dicken
Post Prodigy
Post Prodigy

Power Query Structured lookup


Hi, 
Can someone help or at least point me in direction of  information on a structured lookup; 

 example    position operator   table  { 0 } ,  so the starting point is  [ A = 1 = [A = 2]] = a true / false , 
 so I have a fact table ; 

Table.FromRecords(
{ [Item = "A"], [Item = "B"], [Item = "C"],[Item = "D"],
[Item = "A"] , [Item = "C"] , [Item = "C"] , [Item = "D"] } )

 

and a lookup 

Table.FromRecords( { [Item = "A", Unit = 2],
[Item = "B", Unit = 3],
[Item = "C", Unit = 4],
[Item = "D", Unit = 5]} )

 so I can lookup a  value ; 

Table.AddColumn( Fact, "N", each  lookup { [Item = [Item]]  )) 

This returns the correct corresponding row as a record ; but I can't get to grips with how it works, as it is I presume returnng a true/false as a list? not sure, 

This is the code for what I have as example ; 

= [
lookupT = Table.FromRecords( { [Item = "A", Unit = 2],
[Item = "B", Unit = 3],
[Item = "C", Unit = 4],
[Item = "D", Unit = 5]} ),

Fact = Table.FromRecords(
{ [Item = "A"], [Item = "B"], [Item = "C"],[Item = "D"],
[Item = "A"] , [Item = "C"] , [Item = "C"] , [Item = "D"] } ) ,
Addcol = Table.AddColumn( Fact, "N", each
lookupT { [Item = [Item]]} )]

Richard. 


 

1 ACCEPTED SOLUTION

There are some more examples that may confuse you. If you can understand them, then you understand "field access" (and projection) and the keyword each.

 

// Example 1
[A = 1, B = 2][[A], [C]]?

// Example 2
#table({"A", "B"}, {{1, 2}, {1, 3}})[[D]]?

// Example 3
let 
    _ = [
        A = 1, 
        B = 2
    ]
in 
    [A]

// Example 4
let 
    _ = [
        A = 1, 
        B = 2
    ]
in 
    _[[A], [C]]?

View solution in original post

4 REPLIES 4
ZhangKun
Super User
Super User

This is a native syntax that means find the only row in the table that meets the conditions.

You can find its usage in the Power Query documentation.

https://learn.microsoft.com/en-us/powerquery-m/m-spec-operators#selection-and-projection-operators

 

For example, tbl{[A=1, B=2]) means to find the row in table tbl where column A is equal to 1 and column B is equal to 2 (return a record value).

 

You may know that the operator ? can prevent errors when an item or field does not exist, but it may not work here. The operator ? can only avoid not being found. If multiple rows that meet the conditions are found, an error will still be returned.

// null
Table.FromValue({1, 2, 3, 3}){[Value = 4]}?

// error
Table.FromValue({1, 2, 3, 3}){[Value = 3]}?

 

just to add having had  al look , I knew using  Table [ [ Column] ]   was projection, but would not have thought to search for that so i've learned something already. 

There are some more examples that may confuse you. If you can understand them, then you understand "field access" (and projection) and the keyword each.

 

// Example 1
[A = 1, B = 2][[A], [C]]?

// Example 2
#table({"A", "B"}, {{1, 2}, {1, 3}})[[D]]?

// Example 3
let 
    _ = [
        A = 1, 
        B = 2
    ]
in 
    [A]

// Example 4
let 
    _ = [
        A = 1, 
        B = 2
    ]
in 
    _[[A], [C]]?

Thanks I'll have a look, 
   I'll leave this open for a bit  and see if anyone else has reading suggestions. 

Richad. 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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