Forum Discussion
Anonymous
6 years agoNot applicable
How to Use Slicer for Measure Values
Hello, I am trying to have a slicer/chiclet slicer that will filter some values in my table. The #Aired values is a measure: Show # Aired ABC 1 345 8 XYZ 6 ...
- 6 years ago
Hi Anonymous ,
Does that meet your requirement?
Measure = var a = MAX(Slicer[#Aired]) return IF( a<=SUM('Table'[aired]),1,BLANK())Pbix as attached.
- 5 years ago
Hi @QuanitaA ,
Does that meet your requirement?
Measure = var a = MAX(Slicer[#Aired]) return IF( a<=SUM('Table'[aired]),1,BLANK())Pbix as attached.
Anonymous
6 years agoNot applicable
Thanks for your response. The challenge is we have a lot of data on shows and how many times they've aired. We only really need a view that splits it into '1+' and '3+'. Is it possible to get something like this?
So 1+ would show everything on the list and 3+ would show the last two as well as a show that aired exactly 3 times.
Thanks,
Quanita
v-frfei-msft
6 years agoCommunity Support
Hi Anonymous ,
Does that meet your requirement?
Measure = var a = MAX(Slicer[#Aired])
return
IF( a<=SUM('Table'[aired]),1,BLANK())
Pbix as attached.