Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Using ISFILTERED() Function

I have some page level filters for a category in my power BI project and when I use the "ISFILTERED()" function in the dashboard for the same category, it always returns true but, I don't want my "ISFILTERED()" function to be affected by the page level filter rather I want it to return FALSE, if I don't select anything on the slicer and returns TRUE only if I select some element in the slicer.

 

Can anyone tell me how to do this or, any alternative of "ISFILTERED()" that I can use. In this case.

 

Let me know if you need any additional information  about the question.

1 REPLY 1
Anonymous
Not applicable

as you have applied filtered at page level it will alwasys returns  TRUE.

 

You can try below dax.

Assume Your column have 6 values and you have added it in slicer and you have set 1 value in page level filter.

 

if(isfiltered(column) && distinctcount(column)>1 ,1,0)

 

Thanks & regards,

Pravin Wattamwar

 

If it resolved your problem mark it as solution and give kudos.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.