The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi all,
Here i have four filters i.e Year , Month, Week Start Date & Week End date i want to select a filters in such a way that after selecting year from the year filter only month filter should be enabled untill then it should be disabled similarly follows for week Dates
Is it possible to do it in the way as it is done for sensitivity in the below pic
Please help me
Thank you
Solved! Go to Solution.
@Tarunika , I doubt you can disable. But using is filtered you can check the value and another slicer visual level filter and check for filtered to have value
if(isfiltered('Date'[Year]),1,0)
Now in check in month slicer visual level filter that it is =1
@Tarunika , I doubt you can disable. But using is filtered you can check the value and another slicer visual level filter and check for filtered to have value
if(isfiltered('Date'[Year]),1,0)
Now in check in month slicer visual level filter that it is =1
Thank you @amitchandak
But is any there any way to hide the month filter itself unless any selection is made from year filter