Forum Discussion
AndyT410
Feb 20, 2023Brass Contributor
Unique sorted filter
Hi, If I use the formula below I get a complete list but with blank cells and 1 cell with 00/01/1900. =SORT(UNIQUE(FILTER(G:G,G:G<>" "))) If I change the formula to the 1 below I don't get t...
AndyT410
Feb 20, 2023Brass Contributor
Sorry. I found some cells with leading blanks.
OliverScheurich
Feb 20, 2023Gold Contributor
=SORT(UNIQUE(FILTER(G:G,(G:G<>"")*(LEFT(G:G,1)<>" "))),,1)
Do you want to exclude cells that start with a leading blank such as G17 and G18 in the example?
- AndyT410Feb 20, 2023Brass ContributorI've amended them. Thanks.