Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi,
I would like to add a column in table 1 using data from table 2 to see if a company passed at least once
So account 1 would be Passed
Account 2 passed
Account 3 not passed
Matching would be on account ID, I have tried LOOKUPVALUE but it does not let me as table 2 has double account ID's
Table 1
| Account ID | Company Name | Passed? |
| 1 | Company A | |
| 2 | Company B | |
| 3 | Company C |
Table 2
| Account ID | Date | Passed? |
| 1 | 01-01-2024 | FALSE |
| 2 | 02-01-2024 | TRUE |
| 3 | 03-05-2024 | FALSE |
| 1 | 08-05-2024 | TRUE |
| 1 | 08-05-2024 | FALSE |
| 3 | 10-05-2024 | FALSE |
Any help would be appreciated 🙂
Solved! Go to Solution.
@Anonymous Try this, PBIX attached below signature.
Passed? = IF( TRUE IN SELECTCOLUMNS( RELATEDTABLE( 'Table 2' ), "__Passed", [Passed?] ), TRUE(), FALSE() )
@Anonymous Try this, PBIX attached below signature.
Passed? = IF( TRUE IN SELECTCOLUMNS( RELATEDTABLE( 'Table 2' ), "__Passed", [Passed?] ), TRUE(), FALSE() )
Amazing it worked, thanks 😃
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 23 | |
| 22 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 63 | |
| 44 | |
| 42 | |
| 40 | |
| 40 |