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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply

lookup Value from another table without relationship

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  
KeywordTagRank
ClimateSustainability1
SustainabilitySustainability2

 

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 
NameTag
Definition of climate Sustainability
 Climate Infrastructure OpportunitiesSustainability
Sustainability-Climate Risk SupportSustainability
ARDIAN Adaptation AnalysisOther

 

 

 

 

1 ACCEPTED SOLUTION
Ahmedx
Super User
Super User

column
Screen Capture #419.png

column = COALESCE(
CALCULATE(MAX('Table_2'[Tag]),
    FILTER ( 'Table_2', CONTAINSSTRING ( 'Table_1'[Name], 'Table_2'[Keyword]) )),"Other")

 

View solution in original post

5 REPLIES 5
v-zhangti
Community Support
Community Support

Hi, @RanjanThammaiah 

 

You can try the following methods.

Column = 
IF (
    SEARCH ( "Climate", [Name],, 0 ) <> 0,
    LOOKUPVALUE ( Table2[Tag], Table2[Keyword], "Climate" ),
    "Other"
)

vzhangti_0-1678254684868.png

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.

 

Ahmedx
Super User
Super User

column
Screen Capture #419.png

column = COALESCE(
CALCULATE(MAX('Table_2'[Tag]),
    FILTER ( 'Table_2', CONTAINSSTRING ( 'Table_1'[Name], 'Table_2'[Keyword]) )),"Other")

 

Ahmedx
Super User
Super User

Ahmedx
Super User
Super User

see attached, i solved your problem in power query
https://1drv.ms/u/s!AiUZ0Ws7G26RhhY5L7x0e_GvMC0F?e=Ays6kb

FreemanZ
Super User
Super User

hi @RanjanThammaiah 

try like:

Tag =
LOOKUPVALUE(
    Table2[Tag],
    Table2[Keyword],
    Table1[Name]
 )

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.