Forum Discussion
slicer selection
Hi All,
Please help.
I want to defualt slicer selection that will filter many measures which i have put in various visuals in the page.
slicer [dateselection]= should filter measure 1, measure 2, measure 3 , measure 4 (are all calculations)
if none selected , default to current month.
my dax is something like: if(hasonevalue(slicer[dateselection]), measure 1, measure 2, measure 3, measure 4 ), "current month"
but its not working.
2 Replies
- amitchandakSuper User
Please find the example of Measure slicer
- schodenPost Partisan
Hi thanks for reply but I want something like:
Since Date in slicer is wide range(user can select any ) I cant go on defining for each measures. Just on "Current Month", I can set it
Final Value 1 =
IF(HASONEFILTER(Table[CalcType])
"Current Month", [Measure 1 ], [Measure 2 ],[Measure 3]
),
"Current Month"
)