Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

EXCEL: Unique fields but exclude if it contains the word 'Total'

Looking to complete the following formula which allows me to find unique fields within column but not include any that have the word ‘Total’ in it.

I have the following formula but doesn’t work
UNIQUE(FILTER(A1:B6,A1<>"*Total*"))

Table

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

Id name
A A
A A
A Total A
B B
B Total B

Result

Id name
A A
B B

>Solution :

Try

=UNIQUE(FILTER(A1:B6,NOT(ISNUMBER(SEARCH("Total",A1:A6)))))

Result:

enter image description here

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading