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,
I have to compare two different tables and create a column. Following is the sample input and output.
Input
Table 1
| Product |
| A |
| B |
| A |
| E |
| S |
| A |
Table 2
| List |
| A |
| B |
| C |
| D |
Output
| Product | Status |
| A | Available |
| B | Available |
| A | Available |
| E | NA |
| S | NA |
| A | Available |
Could anyone please guide me how to achieve this.
Any help is greatly appreciated!
Thanks,
Stanley
Solved! Go to Solution.
STEP 1 CREATE A RELATIONSHIP BETWEEN TWO TABLES
STEP 2 CREATE A CALCULATED COLUMN WITH IF AND RELATED AS SHOWN ABOVE.
Perhaps a measure in Table 1 like:
Status = IF(COUNTROWS(RELATEDTABLE(List))>0,"Available","NA")
Perhaps a measure in Table 1 like:
Status = IF(COUNTROWS(RELATEDTABLE(List))>0,"Available","NA")
STEP 1 CREATE A RELATIONSHIP BETWEEN TWO TABLES
STEP 2 CREATE A CALCULATED COLUMN WITH IF AND RELATED AS SHOWN ABOVE.
Thank you very much for the inputs. It worked.
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 |
|---|---|
| 36 | |
| 33 | |
| 26 | |
| 24 | |
| 17 |
| User | Count |
|---|---|
| 67 | |
| 49 | |
| 32 | |
| 27 | |
| 22 |