I search for "spring" but there are 100+ springs
many are called "spring lock washer..."
how do I search for spring but not lock washer?
I search for "spring" but there are 100+ springs
many are called "spring lock washer..."
how do I search for spring but not lock washer?
Though there should be a way, I don't think there actually is. What you are looking for is something like
spring&!washer
but there's no way to actually do an AND in the name search. The string
spring !washer
is equivalent to filename like *spring* OR filename not like *washer* which pretty much returns everything in the vault that doesn't have washer in the name.
Though there should be a way, I don't think there actually is. What you are looking for is something like
spring&!washer
but there's no way to actually do an AND in the name search. The string
spring !washer
is equivalent to filename like *spring* OR filename not like *washer* which pretty much returns everything in the vault that doesn't have washer in the name.