Forum Discussion
Anonymous
7 years agoNot applicable
Filtering with many-to-many relationship
Hi! For the last three days I am trying to do some filtering on many to many related tables. Unfortunately I have not found a solution yet on this forum. I have thee related tables Table A >...
- 7 years ago
You should be able to do this with your existing tables with a measure like the following:
In Table1 missing in Table2 = IF( HASONEVALUE(Table1[OrderID]), Var _table1OrderID = MAX(Table1[OrderID]) Var _table2RowsWithTable1ID = CALCULATETABLE(Table2, TREATAS({_table1OrderID},Table2[OrderID])) Var _countOfMIssingRows = COUNTROWS(_table2RowsWithTable1ID) return IF(_countOfMissingRows = 0,"Missing") )Returns a result like this
Anonymous
7 years agoNot applicable
I copied the values from the tables and found out the directquery add's two spaces. I transformed the column with trim and it works..
Thanks!
d_gosbell
Super User
7 years ago
Anonymous wrote:I copied the values from the tables and found out the directquery add's two spaces. I transformed the column with trim and it works..
So technically I think you'll find that the extra spaces are in the source tables, not added by DirectQuery, but I understand what the issue is and I'm glad you found the solution. :)