Forum Discussion

Alessandro-laba's avatar
6 years ago
Solved

Look up tables

Hi there,    In my Power BI desktop i have 2 different sources of data, one is coming from a simple excel file while the other one is coming from our marketing platform Eloqua. In both set of data ...
  • jdbuchanan71's avatar
    jdbuchanan71
    6 years ago

    You can use LOOKUPVALUE to get the ID from table 2 onto table 1

    ID = LOOKUPVALUE(Table2[ID],Table2[Email],Table1[Email])

    This will pull the ID from table 2 onto table 1 only where the email matches.

     

    My ID's start at 1 just bacause I assigned an index column for the example.