Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi,
I have 2 different tables
1st Table : 14000 names
2 nd table : 25000 names
I would like to add a column to 2nd Table : True if same value as 1st table , False for missing value
Thank you in advance.
Solved! Go to Solution.
Hi @vnqt,
Think this function is what you're after: https://learn.microsoft.com/en-us/dax/lookupvalue-function-dax
Hi,
I do agree with @BITomS if your absolutely need:want to do it in DAX.
My solution would be using a merge in Power Query between both tables.
Let us know if you need more details
Hi @vnqt
many options
Table2[Name] IN VALUES ( Table1[Name] )
or
CONTAINS ( Table1, Table1[Name], Table2[Name] )
or
NOT ISEMPTY ( FILTER ( Table1, Table1[Name] = Table2[Name] ) )
Hi @vnqt
many options
Table2[Name] IN VALUES ( Table1[Name] )
or
CONTAINS ( Table1, Table1[Name], Table2[Name] )
or
NOT ISEMPTY ( FILTER ( Table1, Table1[Name] = Table2[Name] ) )
Hi,
I do agree with @BITomS if your absolutely need:want to do it in DAX.
My solution would be using a merge in Power Query between both tables.
Let us know if you need more details
Hi @vnqt,
Think this function is what you're after: https://learn.microsoft.com/en-us/dax/lookupvalue-function-dax
User | Count |
---|---|
14 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
21 | |
11 | |
10 | |
10 | |
8 |