Forum Discussion
Cygnata
May 13, 2025Copper Contributor
Have text list of files, need to group like with like within same cell.
This is for a museum database, we have a list of filenames of photographs. Each filename starts with the collection number. We need to group all the filenames that start with the same prefix into a s...
- May 13, 2025
As variant
=LET(names, $A$1:$A$29, GROUPBY(TEXTBEFORE(names, "-"),names,ARRAYTOTEXT,3,0) )
SergeiBaklan
May 13, 2025Diamond Contributor
As variant
=LET(names, $A$1:$A$29, GROUPBY(TEXTBEFORE(names, "-"),names,ARRAYTOTEXT,3,0) )Cygnata
May 13, 2025Copper Contributor
That definately looks like it should suit our purposes, thank you!