Forum Discussion
Anonymous
2 years agoNot applicable
Create a virtual table using dax which only contain the selected multi select slicer values
I have a category table, and multi select filters contains category column, I am trying to create table using Dax which will only show the data of categories filtered by slicer. Can we do it in Power...
- 2 years ago
In that case you can use something like
CALCULATE(MIN(Table[Index]),ALLSELECTED(Table[Category Name]))
Rupak_bi
Super User
2 years agoHi Anonymous
Here you are creating table using dax. Table doesn't work dynamically based on slicers.
The table to be created inside a measure and then the required comparison to be done there itself.
Please share some sample data and your desired out put. Will try to solve