Forum Discussion
Advanced Filter in Table not Working
- 1 year ago
Hi combine_sign ,
Thank you for engaging with the Microsoft Fabric Community. I reproduced the problem using two sample Excel files (Payroll and HRIS), created relationships, and used RELATED() in one of the columns.
Then, I used this new column (CleanStatus) in the visual level filter with.
- is not TERMINATED
- is not PAY CONTINUANCE
The filter worked perfectly and excluded the correct rows.
FYI:
Thank you for your inputs maruthisp & Naila-Rais .
I’ve attached the .pbix file for reference. Please take a look happy to provide more details if needed.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The most common reason advanced filtering doesn't work while basic selection filtering does is due to:
Data type mismatch: Ensure your status column (Terminated/Pay Continuance) has consistent data types.
Try this immediate fix:
Go to Power Query Editor
Select your status column
Right-click → Replace Values
Replace any hidden special characters or extra spaces in your status values
Alternative solution:
Filtered View = FILTER( YourTable, NOT(YourTable[Status] IN {"Terminated", "Pay Continuance"}) )
If this doesn't work, please confirm:
Are you using the filter pane or visual-level filters?
Does your RELATED formula maintain filter context properly?