Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Preparing for a certification exam? Ask exam experts all your questions on May 15th. Register now.
Hi All,
I wanted to know if there is any possibility of searching a keyword from 1st table and getting the lookup value from the second table.
1st Table |
Name |
Definition of climate |
Climate Infrastructure Opportunities |
Sustainability-Climate Risk Support |
ARDIAN Adaptation Analysis |
2nd Table | ||
Keyword | Tag | Rank |
Climate | Sustainability | 1 |
Sustainability | Sustainability | 2 |
Wherever the 2nd table keyword matches with the 1st table. the values should be populated from the 2nd table(Tag Column)
1st table with Tag | |
Name | Tag |
Definition of climate | Sustainability |
Climate Infrastructure Opportunities | Sustainability |
Sustainability-Climate Risk Support | Sustainability |
ARDIAN Adaptation Analysis | Other |
Solved! Go to Solution.
column
column = COALESCE(
CALCULATE(MAX('Table_2'[Tag]),
FILTER ( 'Table_2', CONTAINSSTRING ( 'Table_1'[Name], 'Table_2'[Keyword]) )),"Other")
Hi, @RanjanThammaiah
You can try the following methods.
Column =
IF (
SEARCH ( "Climate", [Name],, 0 ) <> 0,
LOOKUPVALUE ( Table2[Tag], Table2[Keyword], "Climate" ),
"Other"
)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
column
column = COALESCE(
CALCULATE(MAX('Table_2'[Tag]),
FILTER ( 'Table_2', CONTAINSSTRING ( 'Table_1'[Name], 'Table_2'[Keyword]) )),"Other")
and it's already in DAX
https://1drv.ms/u/s!AiUZ0Ws7G26RhhcCNBmSOBFgkRry?e=fOxJt0
see attached, i solved your problem in power query
https://1drv.ms/u/s!AiUZ0Ws7G26RhhY5L7x0e_GvMC0F?e=Ays6kb
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
78 | |
76 | |
69 | |
49 | |
42 |
User | Count |
---|---|
56 | |
47 | |
33 | |
32 | |
28 |