List of unique characters from a list

ollyhughes1982

Well-known Member
Joined
Nov 27, 2018
Messages
723
Office Version
  1. 365
Platform
  1. MacOS
Hi,

This is the formula I have been using to get unique list of characters from a a list of names in column A. Is there a reason that it won't work for more than around a 1,000 rows? I get a CALC! ("CONCAT: Text too long") error. I'd like to do it for 10,000 rows.

=LET(u,UNIQUE(FILTER(A2:A1001,A2:A1001<>"")),UNICHAR(UNIQUE(UNICODE(MID(CONCAT(u),SEQUENCE(LEN(CONCAT(u))),1)))))

Finding it a pain to keep having to repeatedly chop my list into smaller chunks.

Thanks in advance!

Olly.
 
Last edited:

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
A cell has a character limit of 32,767 characters. See remarks from MS. Consider VBA.
 
Last edited:
Upvote 0
Don't know if this helps if your checking for an entry might be to break it down to lists for a range of starting characters.
 
Upvote 0
Can you describe in words what you are trying to achieve?
 
Upvote 0
From the list of events, get every unique character that appears. This should be the final result:

1715638010623.png
 
Upvote 0
Does it matter which character/number or you just want it to be unique?
 
Upvote 0
Does it matter which character/number or you just want it to be unique?
I just want every unique character that appears in A2:10001, as per the list above. There would initially be a mix of cases, but I want the final list to be UPPER.
 
Upvote 0

Forum statistics

Threads
1,216,997
Messages
6,133,939
Members
449,849
Latest member
nnnyyy

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top