Is there a quick/easy way to filter all unique items in an Excel 2013 column similar to the Google Docs "Unique" function?
相关问题
- Excel sunburst chart: Some labels missing
- Error handling only works once
- Excel formula in VBA code
- Excel VBA run time error 450 from referencing a ra
- DoCmd.TransferSpreadsheet is not recognizing works
相关文章
- Get column data by Column name and sheet name
- programmatically excel cells to be auto fit width
- Unregister a XLL in Excel (VBA)
- How to prevent excel from truncating numbers in a
- numeric up down control in vba
- Declare a Range relative to the Active Cell with V
- What's the easiest way to create an Excel tabl
- How to create a hyperlink to a different Excel she
filter your data in spreadsheets
This might prove to be of some help to you.
There isn't an equivalent to
=unique()
in Excel, and I hate having to work without it.Without
=unique()
trying to find all of the unique values in a large array of data is impossible. Take a dozen columns of a hundred+ entries and see what the unique values are across the whole mess and pop them nicely into a new columns. I can't figure out how to do it in Excel, but in Gdocs it's simple:Using Filters, or PivotTables, or whatever, just doesn't cut it, and I haven't been able to find any hacked together ridiculous excel formula to do anything similar.
Under the DATA tab there is this: "Remove Duplicates". It'll do what you want.
This is not a pretty answer, but it works. Paste this as an array formula into cell B2:
With the column that needs to be filtered in A:A Then drag / copy it down as far as is required.
See it online in Google Spreadsheets
Caveats:
Footnotes:
Use the Unique records only feature in Advanced Filter.