Forum Discussion
dougeefresh
5 years agoNew Member
Multiple synced date slicers for a single graph
Hello, I would like to add multiple date slicers to a page that has one bar graph and have them control the graph independently. Basically, two groups of control: One doing previous xx days filt...
amitchandak
Super User
5 years agodougeefresh , As far as my experiments in the past, I doubt you can control range filter-based another slicer like this.
But create a measure like this and use as a visual level filter as not blank
measure =
Switch(true() ,
selectedvalue(slicer[slicer]) = "Last 7 days" , if(max(Date[Date]) >=Today() -7 && max(Date[Date])<=today(),1, blank())
// add others,
blank()
)