In the same column in excel, how do I exclude every cell that starts with a specific letter, -


i cant more 1 letter @ time. filters come excel not give option ex. exclude words starting d , z in same column

with data in column a, in b2 enter:

=if(or(left(a2,1)="a", left(a2,1)="d", left(a2,1)="z"),1,0) 

and filter out ones in column b:

enter image description here


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -