Forum Discussion
Anonymous
5 years agoNot applicable
Append two filtered tables
I have two tables that are the exact same so that I can filter data in two differnet ways usign slicers. What I need is a DAX command to create an appended table of these two after slicers have been ...
Anonymous
2 years agoNot applicable
@Anonymous I have the same use case and used
all_table = UNION(table1, table2, table3)
However resulting all_table doesn't respect filtered values in slicers for table1 table2 table3.