Forum Discussion

CrisNep's avatar
CrisNep
Frequent Visitor
3 years ago
Solved

Yes or No Column

Hi All, I am trying to create a column with yes or no answers, based on a different table. I have two tables, one with all customers, and one with the customers that are past due. I need that colu...
  • Kishore_KVN's avatar
    3 years ago

    Hello CrisNep ,

    Create a column in Customers table using LOOKUPVALUE function. It should look as below:

    Check = LOOKUPVALUE('TABLE2'[CUSTOMERS],'TABLE2'[CUSTOMERS],'TABLE1'[CUSTOMERS])
    Then create another column to get 'Yes' or 'No'

    Result = If(Check = BLANK(),"No","Yes")

    If this post helps, then please consider accepting it as the solution to help other members find it more quickly. Thank You!!