Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
hey
I have report page with a lot of slicers
I wanna create a measure that enumerates what slicers are being used.
*Year and Month slicer is filtering*
output : Is being filtered by: Year, Month
Thanks 🙂
Solved! Go to Solution.
@edubcardoso Displaying filter context in Power BI Tooltips - SQLBI
@edubcardoso Displaying filter context in Power BI Tooltips - SQLBI
I think it was not quite what I wanted , but thanks for helping @Greg_Deckler
I was able to solved it. I dont know if it was the smart way to do it, but it works
DummyFilter =
VAR year = IF(ISFILTERED(Calendar[Year]),1)
VAR month = IF(ISFILTERED(Calendar[Month]),1)
VAR sum = year + month
RETURN
IF(sum> 0 , "Filters are being applied to: " &
IF(year = 1,"Year, ") &
IF(month = 1,"Month, ") &
,"No filters are applied.")
@edubcardoso Yep, basically the same technique.
User | Count |
---|---|
14 | |
9 | |
8 | |
7 | |
5 |
User | Count |
---|---|
24 | |
16 | |
15 | |
10 | |
7 |