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.
Hello,
I am using IsFiltered for a table call Customers.
What I want to do is check if the Customers table is Filtered but exclude if the field Status is filtered.
IsCustomerFiltered = IsFiltered(Customers,AllExcept(Customers,Status)).
This does not work.
Is there a workaround,
Thank You,
Michael
Solved! Go to Solution.
@MikeSolvesBI Perhaps:
IsCustomerFiltered = ISFILTERED('Customers') && NOT(ISFILTERED('Customers'[Status]))
@MikeSolvesBI Perhaps:
IsCustomerFiltered = ISFILTERED('Customers') && NOT(ISFILTERED('Customers'[Status]))
Hello,
I guess I should have been clearer.
The Status is a page filter and is always on. I want to ignore the page filter.
Sorry,
Michael
Hi @MikeSolvesBI ,
have you found a solution for this case?
I will really appreciate your answer! 🙂