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
Mahmed1
Helper IV
Helper IV

PowerQuery lookup in same table not working

Hi,

 

I am trying to match a value in same table from a different column but i keep getting an error

 

Here is the formula im trying (trying to look up value in Column ContactLookup

 

= if List.PositionOf(DateToText([Date])&[agentName]),[ContactLookup]) > 0 then DateToText([Date])&[agentName]) else "")

 

Essentially if it finds the value DateToText([Date])&[agentName]) then return that value else blank

3 REPLIES 3
Anonymous
Not applicable

Hi @Mahmed1 

What error is returned?

DateToText([Date])&[agentName] 

DateToText is the function Date.ToText? Is the result returned by the above code a text type?
Try:

= if List.PositionOf([ContactLookup], DateToText([Date])&[agentName]) > -1 then DateToText([Date])&[agentName] else ""

List.PositionOf The first parameter is the type of a list.

List.PositionOf

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

Mahmed1
Helper IV
Helper IV

tried this but still no luck

 

=List.PositionOf(Date.ToText([Date])&[agentName],#"PP_AgentScheduleDetail (2)"[#"ConcatSick&Hol"])

 

getting a cyclic ref error

Mahmed1
Helper IV
Helper IV

Please let me know if you need any more information

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