5
u/MayukhBhattacharya 1265 17h ago edited 17h ago
First select the columns, and then goto Data Tab --> Click Text To Columns --> First Step --> Delimited --> Next --> Second Step Select Only Next --> Third Step --> Column Data Format and Choose as Text --> Click Finish, now use the remove duplicates option from the data tab, it should work.

Or, using formula:
=UNIQUE(--A:.A)
Or to keep as text format:
=UNIQUE(A:.A)
1
u/taylorgourmet 4 17h ago
That changes them to number. I need them as text.
4
u/MayukhBhattacharya 1265 17h ago
2
2
1
3
u/chiibosoil 430 17h ago
It won't since number and text are not same.
There are number of methods...
- Add helper column. Drag down.
=COUNTIF($A$2:A2,A2)
Then filter to show where this column = 2 and delete.
- Text to Column -> Delimited -> Hit next, till step 3 of 3. Set column type to Text. Then remove duplicates.
etc.
2
u/GuerillaWarefare 113 17h ago
You mention you want to keep the text cells… if there is a text and a similar number you want a list of the uniques while retaining text where it was present as text?
2
u/PaulieThePolarBear 1918 16h ago
Your example data showed exactly two instances of any value with one being text and one being numerical. With 100% certainty, is this true for all of your data? Said another way, the below scenarios are absolutely impossible in your data
- 3 or more instances of any value
- exactly 1 instance of any value with that value being text
- exactly 1 instance of any value with that value being numerical
- 2 or more instances of any value as text
- 2 or more instances of any value as numerical
1


•
u/excelevator 3067 11h ago
Please be mindful of the submission guidelines
The post content must be a clear description of what you seek to achieve, not a vague comment based on the title as the description
Posts not following guidelines may be removed without notice.