This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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 column to show yes, if it's past due, and no if it is not.
Any help will be much appreciated.
Solved! Go to Solution.
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!!
Step 1 :- You can use appen quaries with common ref as customer .
Step 2 :- You can add a If statement if(table(date())< today(date()), " Yes", "No")
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!!
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 27 | |
| 26 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 66 | |
| 36 | |
| 32 | |
| 26 | |
| 23 |