Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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.