Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 11 | |
| 8 | |
| 8 | |
| 8 |