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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

DAX VLookup help

Hi.

Can someone help me here. I have two tables. Table1 value should try to match with table two.

Table 1 values found in table 2 then yes else no.

Shree185_0-1620684914682.png

 

Table 1

123456yes
456789yes
741321No
159753No
147852Yes

 

Table 2 
147852 
65 
23 
123456 
456789 
1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi, @Anonymous 

I assume you want to create a new column in Table1

Please check the below picture and the formula for creating a new column.

 

Picture3.png

 

New Column =
IF( Table1[Table 1] in VALUES(Table2[Table 2]), "Yes", "No")
 

Hi, My name is Jihwan Kim.


If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.


Linkedin: linkedin.com/in/jihwankim1975/

Twitter: twitter.com/Jihwan_JHKIM

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

3 REPLIES 3
Jihwan_Kim
Super User
Super User

Hi, @Anonymous 

I assume you want to create a new column in Table1

Please check the below picture and the formula for creating a new column.

 

Picture3.png

 

New Column =
IF( Table1[Table 1] in VALUES(Table2[Table 2]), "Yes", "No")
 

Hi, My name is Jihwan Kim.


If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.


Linkedin: linkedin.com/in/jihwankim1975/

Twitter: twitter.com/Jihwan_JHKIM

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


ryan_mayu
Super User
Super User

@Anonymous 

you can try this

Column = 
var lookup=LOOKUPVALUE('Table (2)'[column],'Table (2)'[column],'Table'[Column1])
return if(ISBLANK(lookup),"no","yes")

1.PNG

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




nilimarodrigues
Helper III
Helper III

Hello,

 

Can you create a relationship between both Table1 and Tabl2 and then add a calculated column in Table 1 using "RELATED" fucntion?

 

Calculated column = if(Table1[Column1]=RELATED(Table2[Column1]),"Yes","No")
 
Kindly give kudos if my reply helps!
 
Thanks

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

Users online (76)