Forum Discussion
Anonymous
2 years agoNot applicable
cross reference data. between tables
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...
- 2 years ago
Anonymous Try this, PBIX attached below signature.
Passed? = IF( TRUE IN SELECTCOLUMNS( RELATEDTABLE( 'Table 2' ), "__Passed", [Passed?] ), TRUE(), FALSE() )
Greg_Deckler
2 years agoCommunity Champion
Anonymous Try this, PBIX attached below signature.
Passed? = IF( TRUE IN SELECTCOLUMNS( RELATEDTABLE( 'Table 2' ), "__Passed", [Passed?] ), TRUE(), FALSE() )- Anonymous2 years agoNot applicable
Amazing it worked, thanks 😃