I want to try to make a collection of all resources, except type:comm & type journal. Can we use something like ANDNOT operator?
* -type:(comm, journal)
where * = all resources and - = ANDNOT
Be aware that 'comm' inculdes "Bible Commentary" and "Commentary". So, to be clear try
* -type:("Bible Commentary", journal)
Yes, you can use ANDNOT: * ANDNOT type:commentary ANDNOT type:journal
Dave's suggestion of "-" is shorthand for ANDNOT, but note that there must not be a space after the minus sign.
Thanks Dave & Bradley