condition other table
1 TopicFilter table rows based on condition in other table
Hi, How to Write DAX for following SQL example: Select Column1, Column2, Column3 from Table1 T1 Inner Join ( Select Column2 from Table2 Where Column3 Not Like '%ABC%' And Column3 Not Like '%XYZ%' ) T2 ON T1.Column1 = T2.Column 1 Where T1.Column3 = '%EFG%'Solved756Views0likes2Comments