Forum Discussion

rohitMe's avatar
rohitMe
Icon for Advocate I rankAdvocate I
8 years ago
Solved

lookup between tables

Hi all,   I have customer details and I want to look up whether a customer is listed twice. I have two tables that look as shown below:     I want to identify whether the customer is l...
  • Anonymous's avatar
    Anonymous
    8 years ago

    Hi rohitMe,

     

    You can create a calculate column with below formula to lookupvalue from table2.

    Call ID from Table2 =
    CONCATENATEX (
        FILTER (
            ALL ( Table2 ),
            Table2[CUSTOMER MOBILE] = EARLIER ( Table1[CUSTOMER MOBILE] )
        ),
        Table2[CALL ID],
        ","
    )
    

     

    Regards,

    Xiaoxin Sheng