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]))
lbendlin
Super User
2 years agouse VALUES or FILTERS
- Anonymous2 years agoNot applicable
In the below snapshot, I have created dax based Table 2 which need to give only filtered values from Table.
However, that isn't the case.