Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. 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
User | Count |
---|---|
119 | |
78 | |
59 | |
52 | |
48 |
User | Count |
---|---|
171 | |
117 | |
61 | |
59 | |
53 |