This tutorial will demonstrate how to filter duplicate values in Excel and Google Sheets. Advanced Filter Function
Filter Duplicate values to an alternative range
Filter duplicates rows using the Advanced Filter Function in Excel
COUNTIF and the Filter Function in ExcelTo filter using the COUNTIF and standard Filter function, you need to add an additional helper column to your worksheet.
=IF(COUNTIF($B$4:B4,B4)=1,1,0)
Your list will now be filtered to only show unique values. COUNTIF and the Filter Function in Google SheetsGoogle sheets does not have an advanced filter. You can filter Duplicate values by using the same formula as you would use in Excel.
=IF(COUNTIF($B$4:B4,B4)=1,1,0)
Click OK to filter the list. |