In this Power BI Tutorial, we will learn how to remove the filter value from the visual using the Power BI DAX function. We will also be going to cover the below-mentioned headings with various examples.
Recently, I was working on the Power Bi report, where we need to remove the filter value for the selected visual or the page filter. To accomplish it, I have used the Power BI Dax Remove Filter function.
- What is Power BI DAX remove filter?
- How do use Power BI DAX remove visual filter
- How to remove page filter in Power BI DAX
- How to work with Power BI DAX remove slicer filter
- How to remove all filters using Power BI DAX
- How to work with Power BI DAX remove one filter
- How can we remove specific filter in Power BI
Table of Contents
Power BI DAX remove filter
Let us see how we can use the Remove filter function which clears filters from the mentioned tables or columns using the Power Bi Dax filter function in Power BI.
In this example, I have used the Bikes table data, where the bike table contains four different columns they are, Bike Model, Bike Names, color, and price.
- Initially, open the power bi desktop and load the data into it, click on the new measure option from the ribbon and apply the below formula into it.
Remove Filter = CALCULATE([Total],REMOVEFILTERS(Bikes[Color] ),Bikes[Color]="Red")
Where,
- Remove Filter = Measure Name
- Total = Calculated Measure Value
- Bikes = Table Name
- Color = Column Name
- Now from the visualization, select the Table visual and then drag and drop the field values and the created remove filter measure value into it.
- In the below screenshot, you can see that the table visual remove filter column displays the value based on the condition applied it removes other values except for the filtered value.

This is how to use the Remove filter function in Power BI Dax to filter the values in Power BI.
Also Read: How to Filter Blank Value in Power BI
Power BI DAX remove visual filter
Let us see how we can use the remove visual filter using the filter function in Power BI.
In this example, I’ll show you how to remove the filter from the table visual in the Power BI report.
- Open the power bi desktop and load the data into it, select the report and click on the table visual for which you want to apply the filter.
- Then Expand the Filters pane and apply the filter based on the column field under the Filters in this visual section. The Visualization will automatically change based on the applied filter.
- In this example, I am going tofilter the data based on the selected visual, you can see that I am going to filter the data based on the Bike Model for the selected visual as shown below:

- The below screenshot represents the data based on the filter applied, it displays data for the selected bike model.

- Now to remove the applied filter, click on the clear filter option as highlighted below, which will remove the filtered data value from the table visual.

This is how to filter or remove data value from the visual in the Power BI report.
Check out: Power BI DAX Filter If [With Real Examples]
Power BI DAX remove page filter
Let us see how we can remove the page filter using the filter function in Power Bi.
In this example, I’ll show you how to remove the filter from the Power BI report page.
- Open the Power BI report page for which you want to apply the filter.
- Then Expand the Filters pane and apply the filter based on the column field under the Filters on this page section. The Report page will automatically change based on the applied filter.
- In this example, I am going to filter the data based on the Bike model for the selected Power Bi report page as shown below:

- The below screenshot represents the data based on the filter applied, it displays filtered data for the selected bike model in both the table and the matrix visual Presented on the Power BI report page.

- Now to remove the applied filter, click on the clear filter option as highlighted below, this will remove the filtered data value from the Power Bi report page.

This is how to filter or remove data value from the Power BI report page in Power Bi.
Read: Power BI Dax Filter [With 15+ Examples]
Power BI DAX remove slicer filter
Let us see how we can remove the slicer filter using the filter function in Power bi.
- Open the Power Bi desktop and load the data into it. Select the Slicer visual from the visualization, then drag and drop the Bike name field from the field pane.
- Now select the card visual to display the selected filter value data as shown below:

- Now to remove the applied filter, click on the clear filter option from the slicer visual as highlighted below: The card visual will not display any values because the applied filter has been removed.

This is how to remove the slicer filter using the filter function in Power bi.
Read: Power Query Add Column Date [15 Examples]
Power BI DAX remove all filter
Let us see how we can use the Remove all filter function using the Power Bi Dax filter function in Power BI.
- Initially, open the power bi desktop and load the data into it, click on the new measure option from the ribbon and apply the formula below.
Remove All Filter = CALCULATE([Total],ALL(Bikes[Bike Names]),REMOVEFILTERS(Bikes[Color] ),Bikes[Color]="White")
Where,
- Remove All Filter = Measure Name
- Total = Calculated Measure Value
- Bikes = Table Name
- Color = Column Name
- Now from the visualization, select the Table visual and then drag and drop the field values and the created remove filter measure value into it.
- In the below screenshot, you can see that the table visual remove filter column displays the value based on the condition applied it removes other values except for the filtered value.

This is how to use the Remove all filter function which clears filters from the mentioned tables or columns using the Power Bi Dax filter function in Power BI.
Have a look: Power Query Add Column If Statement
Power BI DAX remove one filter
Let us see how we can remove one filter or single column filter using the Power Bi Dax remove filter function in Power BI.
In this example, I’ll use the Power bi calculate and the remove filter function to filter the data value based on condition.
- Initially, open the power bi desktop and load the data into it, click on the new measure option from the ribbon and apply the formula below.
Single Column Filter = CALCULATE([Total],REMOVEFILTERS(Bikes[Color]))
Where,
- Single Column Filter = Measure Name
- Total = Calculated Measure Value
- Bikes = Table Name
- Color = Column Name
- From the visualization, select the Table and slicer visual from the fields pane.
- Then drag and drop the field values and the created remove filter measure value into it.
- In the Slicer visual drag and drop the Bike color field from the fields pane.

- In the below screenshot, you can see that the table visual remove filter column displays the value based on the condition applied it removes other matters except for the filtered value.

This is how to remove one filter or single column filter using the Power Bi Dax remove filter function in Power BI.
Check: How to duplicate multiple columns using Power Query
Power BI DAX remove specific filter
Let us see how we can remove Specific filters using the Power Bi Dax remove filter function in Power BI.
In this example, I’ll use the Power bi calculate and the remove filter function to filter the data value based on condition.
- Initially, open the power bi desktop and load the data into it, click on the new measure option from the ribbon and apply the formula below.
Specific filter = calculate(SUM(Bikes[Price]),REMOVEFILTERS(Bikes[Color]),Bikes[Bike Model]="220F")
Where,
- Specific filter = Measure Name
- Total = Calculated Measure Value
- Bikes = Table Name
- Color, Price, Model = Column Names
- Now in thereportsection, select thetable visual and card visualfrom the visualizations.
- In the table visual, drag and drop theBike Model, Bike Names, Color, and Pricefrom the field pane. In the card visual drag and drop the created specific filter Value measure.
- In the screenshot below, you can see that the card visually displays the value as the filtered value.

- If we choose any other bike model value filter then it displays the value as blank as shown below:

This is how to remove Specific filters using the Power Bi Dax remove filter function in Power BI.
Furthermore, you may like some more Power BI tutorials:
- How to add an empty column in Power BI
- Power BI DAX Filter Table [With Real Examples]
- How to add a column with a dropdown list in Power Query
- How to add a column with the same value in Power BI
- How to add column with a fixed value in Power BI
- How to add column from another table in Power BI [3 Different ways]
- Power Query Add Column [35+ Examples in Power BI]
This is how toremove filter value using the remove filter function in Power BI, Also examined the below-mentioned topics in this Power Bi tutorial
- Power BI DAX remove filter
- Power BI DAX remove all filter
- Power BI DAX remove one filter
- Power BI DAX remove specific filter
- Power BI DAX remove visual filter
- Power BI DAX remove page filter
- Power BI DAX remove slicer filter
Bijay Kumar
I am Bijay a Microsoft MVP (8 times –My MVP Profile) in SharePoint and have more than 15 years of expertise in SharePoint Online Office 365, SharePoint subscription edition, and SharePoint 2019/2016/2013. Currently working in my own venture TSInfo Technologies a SharePoint development, consulting, and training company. I also run the popular SharePoint website EnjoySharePoint.com
FAQs
How do I remove a filter from power bi? ›
Filter in Power BI is totally easy - just click on cells of table or columns in chart and all visuals on page are filtered. But how to REMOVE the filters and show everything again? There is no button to do it... In any filtered chart or table you can just click on previously filtered item, and all filters are gone.
How do I delete a filter? ›Delete a filter
Hover the cursor over the filter you want to delete. Select Open menu. . Select Delete and Confirm.
Clearing Filter in One Column at a Time
With the heading, you will notice a small funnel-like “Filter icon”. Click that icon and it will take you to a drop-down menu. From this menu click the “Clear filter from (name of the column)” and your filter will be removed from that column.
When you select single select option in format pane, it will automatically clear all the filters in your filter visual.
What are the different ways to remove filter criteria? ›- To open the Filter window, from the toolbar or drop zone, click the Filter icon and then click Edit/Add Filter. The Filter window appears.
- Click the line or group you want to remove.
- Click the Delete Selected Filter Line icon. This deletes the highlighted line or group.
- Click the Data tab.
- Click the Filter button.
- Click Clear Filter from [column name].
- Go to the Data tab.
- Hover your cursor over the 'Filter Views' option in the list.
- Click on the Filter View you want to delete.
- Click on the Gear icon.
- Click on Delete.
Differences between ALL() and REMOVEFILTERS()
REMOVEFILTERS is just an alias of ALL here, so it works in the same manner. Basically, using only ALL() returns a table including all rows, ignoring any filters that might have been applied.
If you like to hide a filter, so that the user don't even know that a filter like that is applied, you can use the visibility icon of the filter to hide it. And even if the user clicks on the filter icon of the visual, won't see that.
What is the difference between keep filter and remove filter? ›KEEPFILTERS - Modifies how filters are applied while evaluating a CALCULATE or CALCULATETABLE function. REMOVEFILTERS - Clear filters from the specified tables or columns.
How do I hide filter buttons in a table? ›
- For columns that have a drop-down list as a filter, click the down arrow to display the list and select an item from the list. ...
- For columns without a drop-down list, type in a value to filter the data in the column. ...
- Turn off filters by clicking Show/Hide Column Filters a second time.
...
I had the same problem.
- Select All in the filter and untick all unwanted info and click OK.
- Clear all filters. ...
- Press Ctrl- to delete those rows.
Right-click a row or column member, select Filter, and then Filter. In the left-most field in the Filter dialog box, select the filter type: Keep: Include rows or columns that meet the filter criteria. Exclude: Exclude rows or columns that meet the filter criteria.
What are the 3 basic method of filtering? ›There are several filtration methods : simple or gravity, hot and vacuum filtrations. The selection of the appropriate method is typically dictated by the nature of the experimental situation.
What are the three types of filtering? ›Filters can be active or passive, and the four main types of filters are low-pass, high-pass, band-pass, and notch/band-reject (though there are also all-pass filters).
Can you undo a filter? ›There are a few different ways to take a filter off a picture. One way is to open the picture in an editing program, such as Photoshop or GIMP, and delete the filter layer. Another way is to use a filter removal tool, such as the Photoshop plugin Remove Noise or the GIMP plugin Unsharp Mask.
How do you add and remove auto filter? ›Turn off the AutoFilter feature by selecting Filter from the Data menu and then AutoFilter from the submenu. Reset all filtering criteria by selecting Filter from the Data menu and then Show All from the submenu. Select the pull-down arrow for a field that has criteria set, and then choose the (All) option.
How do I remove all quick filter? ›Just click in the quick filter and under customize you'll find a check box to un-tick.
Are view filters permanent? ›Filtering your incoming hits permanently includes, excludes, or alters those hits in that view, according to the type of filter. Therefore, you should ALWAYS maintain an unfiltered view of your data so you always have access to your full data set. Filters require up to 24 hours before they are applied to your data.
How do I turn off filter replacement? ›Press and hold the "replace filter" switch for 3-5 seconds until you hear a beep. The "replace filter" light should shut off when it beeps.
What is the difference between filters and filter views? ›
Data that matches the filter criteria you specify doesn't appear while the filter is on. With filter views, you can also save different filters and switch between them whenever you like. Filters do not change the data in your spreadsheet, so they are useful when you want to temporarily hide or sort some information.
What does SUMX do in DAX? ›Returns the sum of an expression evaluated for each row in a table.
What is difference between filter and Keepfilters in DAX? ›The net effect over any one column is that both sets of arguments apply: both the filter arguments used in CALCULATE and the filters in the arguments of the KEEPFILTER function. In other words, whereas CALCULATE filters replace the current context, KEEPFILTERS adds filters to the current context.
What does Treatas do in DAX? ›TREATAS DAX Function (Table manipulation) Treats the columns of the input table as columns from other tables. For each column, filters out any values that are not present in its respective output column.
How do I hide filter values? ›To do this: Right click your Dim (Dim1 in my example) and choose "Create parameter..." Drag this calc field into the Filter pan and only show the value 1.
Can we remove the filter once applied? ›Remove all the filters in a worksheet
If you want to completely remove filters, go to the Data tab and click the Filter button, or use the keyboard shortcut Alt+D+F+F.
To remove a filter, on the Home tab, in the Sort & Filter group, click Toggle Filter, or click Advanced and click Clear All Filters.
What does the filter () method do when you use it? ›The filter() method creates a shallow copy of a portion of a given array, filtered down to just the elements from the given array that pass the test implemented by the provided function.
Can you remove a filter in TikTok? ›Unfortunately, there's no way you can remove filters on TikTok once you've posted a video. The only option is to edit the content and repost a new version. TikTok only permits removing filters from videos before posting them – so think twice before you post.
Can I remove a filter from Instagram? ›Tap on Manage and you'll access your customization options for filters. You can uncheck the circle to the right of a filter to disable it and hide it from the filter options scroll-through menu.
How do I remove a filter in Excel? ›
On the Home tab, in the Editing group, click Sort & Filter, and then click Clear.
Which button can remove filter? ›Remove all the filters in a worksheet
If you want to completely remove filters, go to the Data tab and click the Filter button, or use the keyboard shortcut Alt+D+F+F.
- Open the Instagram app and navigate to the desired photo from which you want to remove the filter.
- Tap on the three-dotted icon > Delete.
- Then, tap on the plus icon from the top right corner.
- Now, select the unedited photo without any filter on Instagram.
You can of course remove the filter from a video before it's posted, just as you can remove a sound or other effect.
What app removes rotoscope filter? ›Rotoscope Filter Remover is a free filter removal app for Android with video editing features, much like Sweet Selfie Lite - Filter camera photo editor and Beauty Camera - Selfie Camera. The primary purpose of the application is to eliminate the Rotoscope filter that's used on TikTok videos.
How do I turn off auto filter on Instagram? ›- Tap or your profile picture in the bottom right to go to your profile.
- Tap in the top right, then tap Settings.
- Tap Privacy, then tap Face and hand effects.
- Tap or next to Turn on face and hand effects to turn this setting on or off.
"Excessive time spent looking at filtered versions of themselves can adversely affect individuals' mood, sleep, and overall mental and physical wellness." Even those who don't spend a lot of time on these apps can still feel the ramifications of these filters because they have a way of affecting society as a whole.
How do I remove a filter from one column in Excel? ›Clear one column filter
Clearing only one column's filter is also possible, if the selected cell is in the heading row of that column. Hold the Alt key down and press the down arrow. Release those keys and then press C. Column Filter cleared.
Click the Filter icon button next to the column heading, and then click Clear Filter from <“Column Name”>. Click DATA > Clear.