Remove Duplicates in Google Sheets
If you want to remove duplicates entries in Google sheets easily, follow these instructions Before that, consider that You have data in Sheet1 & column A is one which has list of values with some duplicates. Now,- Open Google sheets from Google Drive.
- Enter formula '=UNIQUE(A:A)' in any cell
- Press Enter.
- From selected cell all Unique values will be printed.
How to get Count of Unique values ignoring Duplicates?
If you want to know how many values are unique before trying the above option or would like to verify the results after removing duplicates, then:- Enter formula '=COUNTUNIQUE(A:A) in another cell 'C1'.
- Spreadsheet will return the count of unique values.