Forum Discussion
AlessandroBet
Helper V
1 year agoFiltering existing table with column values "XXX" using DAX code
Hi, i want to filter existng table with column values "XXX" using DAX code The existing column to filter is created with "Related" command Thanks
bhanu_gautam
Super User
1 year agoAlessandroBet , You can filter it like this
FilteredTable = FILTER(YourTable, RELATED(AnotherTable[AnotherColumn]) = "XXX")
For accurate solution please share more details