Pregunta

I'm trying to filter out data sets in Google Spreadsheets to get something along the lines of:

=not(search("#"; (sort(unique(A:A)))))

Basically, I want all of A:A, except columns containing the string #

Any help would be appreciated :)

¿Fue útil?

Solución

=SORT(UNIQUE(FILTER(A:A,ISERROR(SEARCH("#",A:A)))))

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top