Forum Discussion
Anonymous
8 years agoNot applicable
Multiple Slicers on One Table
I have a very large table that I would like to apply some slicers to. Because the table is so large, I'd like to have multiple slicers acting on it. Below is an example of my data: Vehicle ID - ...
- 8 years agoFor this you will need multiple disconnected slicers with measures to harvest the user choices and set defaults if no choice is made. Then use Dax in measures to filter individual measures.
Here is an example using multiple date ranges to overlap two data sets that I helped someone build for a different solution. https://1drv.ms/u/s!AuCIkLeqFmlhhJkIcpsdkWzMMqeBBw
It’s more complex than what you need but demonstrates the principles
Seward12533
8 years agoSolution Sage
so build them :) I'd recommend setting up some Lookup Tables to linked to your data and filter on those. Will also function as bridge tables when you start using multiple source (FACT) tables.
Few ways to do do this.
in Power Query
- make a REFERENCE copy of your query that collects the data (Right Click and hit REFERENCE)
- Select only the column you want to slice on and then REMOVE OTHER COLUMNS (right click on column header or from Remove columns button on ribbon)
- Then REMOVE Duplicates
- Repeat 1-3 for each of your slicers link to your FACT table in your model and insert slicers visuals for each of them.
In DAXX
- Create a new Table from the Modeling Ribbon
- Use this DAX PAttern
Vehicle IDs = VALUES(table[Vehicle ID])
- Repeat 1-3 for each of your slicers link to your FACT table in your model and insert slicers visuals for each of them.
Anonymous
8 years agoNot applicable
I sort of follow... but how would it work if for Vehicle ID 1 I wanted to select 10,000 miles and for Vehicle ID 2 I wanted to select 12,000 miles?
- Seward125338 years agoSolution SageFor this you will need multiple disconnected slicers with measures to harvest the user choices and set defaults if no choice is made. Then use Dax in measures to filter individual measures.
Here is an example using multiple date ranges to overlap two data sets that I helped someone build for a different solution. https://1drv.ms/u/s!AuCIkLeqFmlhhJkIcpsdkWzMMqeBBw
It’s more complex than what you need but demonstrates the principles- Anonymous4 years agoNot applicable
Hello, I tried the link that you shared, but receievd an error.
Could you kindly send the link again, please?