Hi
What is the easiest way to create a collection that excludes all monographs?
What rule could I use?
P A
What is the easiest way to create a collection that excludes all monographs? What rule could I use?
Try something like this:
rating:>=0 ANDNOT type:monograph
Thanks Allen Browne
Yes that works.
Now my next question: How do you exclude Monographs and all Non English text resources?
FYI, you can just use "*" to select all resources. And "-" (without a space after it) is a shortcut for ANDNOT.
* -type:monograph
lang:en -type:monograph
Thanks Bradley. Good, simple stuff to know.
Thanks Bradley
P A[Y]
I have created an ALL English collection using
lang:en
I have created an ALL English collection excluding monographs using
P A [Y]
PA, U said:
My question: Is it en-type or en - type or en -type
No sure if matters?
but if you cut and paste what I have done it will work.
There's a space between en and - but no space between - and type.
it does. the en belongs to the first part of the filter/selection lang:en (no space between the colon and the en) which gives you all English resources in the library.
the -type:.... is an abbreviation for ANDNOT type:.... and is the second part of the filter/selection, narrowing the results down by taking out those of a specific type, here monograph. The minus sign must precede the type:... immediately, no space in between, otherwise Logos treats the minus as a separate part and the type:... as a third part (all of them separated/connected by spaces, which work as AND) with the result of showing only monographs.
it does. the en belongs to the first part of the filter/selection lang:en (no space between the colon and the en) which gives you all English resources in the library. the -type:.... is an abbreviation for ANDNOT type:.... and is the second part of the filter/selection, narrowing the results down by taking out those of a specific type, here monograph. The minus sign must precede the type:... immediately, no space in between, otherwise Logos treats the minus as a separate part and the type:... as a third part (all of them separated/connected by spaces, which work as AND) with the result of showing only monographs.
Thanks NB.Mick
...use "*" to select all resources
Thanks, Bradley. The wildcard is probably quicker to execute as well as to type.
The wildcard is probably quicker to execute
It used to be a lot slower, which is why people came up with "rating:>=0" and other "tricks" to select all resources. That performance problem has been fixed for several years now, I think.
That performance problem has been fixed for several years now, I think.
Thanks for that bit of information. * appear to be instantaneous now (at least in the library panel).