Forum Discussion

RanjanThammaiah's avatar
3 years ago
Solved

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

 

 

 

 

  • column

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

     

5 Replies