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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

LookUp function

Hello Community,

 

I have 2 tables  and in Table-1 i have columns called ID, Name, address and in second table i have ID column and i want to do lookup on table-2 and create a calculated column in table-1 that if any ID matching then i need "IDYes" and if its not matching i need "IDNo". 

 

Table-1  
IDNameAddress
1Abc123fva
1def4rfsa
2Abcdasdd
4josgiedsd

 

Table-2
ID
1
2
3
5

 

Out put   
    
Table-1   
IDNameAddressNew Column
1Abc123fva1Yes
1def4rfsa1Yes
2Abcdasdd2Yes
4josgiedsd4No

 

How can i achieve this?

 

Thanks 

4 REPLIES 4
Ashish_Mathur
Super User
Super User

Hi,

Create a relationship from the ID column of Table1 to the ID column of Table2.  In Table, write this calculated column formula

=if(ISBLANK(RELATED(Table2[ID])),"No","Yes")

Hope this helps.

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
ElenaN
Resolver V
Resolver V

Hello,

 

You can try something like this:

 

Column = IF(LOOKUPVALUE(Table1[ID], Table2[ID], Table1[ID]) = Table1[ID], Table1[ID]&"Yes", Table1[ID]&"No")
 
Regards,
ElenaN
Anonymous
Not applicable

Its is not taking 2nd table. Table2[ID]


@ElenaN wrote:

Hello,

 

You can try something like this:

 

Column = IF(LOOKUPVALUE(Table1[ID], Table2[ID], Table1[ID]) = Table1[ID], Table1[ID]&"Yes", Table1[ID]&"No")
 
Regards,
ElenaN


@ElenaN wrote:

Hello,

 

You can try something like this:

 

Column = IF(LOOKUPVALUE(Table1[ID], Table2[ID], Table1[ID]) = Table1[ID], Table1[ID]&"Yes", Table1[ID]&"No")
 
Regards,
ElenaN

 

Hello,

 

I am sorry but i do not understand your reply. What error message do you receive?

 

Regards,

ElenaN

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.