Forum Discussion
Yes or No Column
- 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!!
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!!