Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
Solved! Go to Solution.
Hi @smpa01,
If I understand you correctly, a simple DAX formula could do that.
I assume you have a table called "Table1" with NAME and ID column.
And another table called "Table2" with Partial Name column.
Then you should be able to use the formula below to create a calculate column in "Table2" to get ID from "Table1" based on the value of Partial Name. ![]()
Column =
CALCULATE (
MAX ( Table1[ID] ),
FILTER ( Table1, SEARCH ( Table2[Partial Name], Table1[NAME],, 0 ) > 0 )
)
Regards
Hi @smpa01,
If I understand you correctly, a simple DAX formula could do that.
I assume you have a table called "Table1" with NAME and ID column.
And another table called "Table2" with Partial Name column.
Then you should be able to use the formula below to create a calculate column in "Table2" to get ID from "Table1" based on the value of Partial Name. ![]()
Column =
CALCULATE (
MAX ( Table1[ID] ),
FILTER ( Table1, SEARCH ( Table2[Partial Name], Table1[NAME],, 0 ) > 0 )
)
Regards
@v-ljerr-msftthanks for the solution. Is there a way to achieve this in Power Query by any chance - searching a column of Partial Text Strings in another list of column containing Text Strings.