List of unique characters from a list

ollyhughes1982

Well-known Member
Joined
Nov 27, 2018
Messages
795
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:
Ok, how about
Excel Formula:
=UNICHAR(UNIQUE(DROP(REDUCE("",FILTER(A2:A5000,A2:A5000<>""),LAMBDA(x,y,VSTACK(x,UNICODE(UPPER(MID(y,SEQUENCE(LEN(y)),1)))))),1)))
 
Upvote 0

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Ok, how about
Excel Formula:
=UNICHAR(UNIQUE(DROP(REDUCE("",FILTER(A2:A5000,A2:A5000<>""),LAMBDA(x,y,VSTACK(x,UNICODE(UPPER(MID(y,SEQUENCE(LEN(y)),1)))))),1)))
Re this strange character 'ʷ': Is there a way that you can do a search on it specifically? I have an alphabet-related challenge worksheet that looks for all of these letters - that's the purpose of generating this list in the first place, But, when I use my normal formula to search, for this character it is picking up the first event where the name included 'W' (Newport parkrun), rather than being blank, as I haven't yet completed the only event name that currently contains this character.
Screenshot 2024-05-14 at 12.50.20.png


Is there perhaps a way to search on it's code, rather than the actually character, to prevent it looking for 'W' or 'w'?
 
Upvote 0
It maybe be possible, but that's a different question & so needs a new thread.
 
Upvote 0

Forum statistics

Threads
1,224,697
Messages
6,180,403
Members
452,981
Latest member
MarkS1234

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