Collection rule not working
Hello.
I am trying to create a rule with just the sermon books in Logos. But the rule I wrote doesn't seem to be working. It is still showing me commentaries even though I typed in the rule field "ANDNOT..... type:calendar,commentary,magazine."
subject:sermon,sermons OR series:"Expository Pulpit Series" ANDNOT (title:illustration,outline,autobiography,history OR type:calendar,commentary,magazine OR communitytag:homiletics,theology,discipleship,illustration,preaching)
I tried putting the first two in a parenthesis, but it is still not working:
(subject:sermon,sermons OR series:"Expository Pulpit Series") ANDNOT (title:illustration,outline,autobiography,history OR type:calendar,commentary,magazine OR communitytag:homiletics,theology,discipleship,illustration,preaching)
Thanks for the help.
Comments
-
Welcome to the forums. You appear to be using types in a way other than they show in the library - you are excluding non-Bible commentaries. Biblical commentaries are "Bible Commentaries"
Make that correction and we can make the next step. However, the rule type:sermon OR title:(sermon,homily) should pick up all books of sermons although there may be a few sermons scattered among other writings that are missed. The test on title is simply because some homilies of early church fathers are treated as Biblical commentaries rather than sermons.
Orthodox Bishop Alfeyev: "To be a theologian means to have experience of a personal encounter with God through prayer and worship."; Orthodox proverb: "We know where the Church is, we do not know where it is not."
0 -
type:calendar,commentary,magazine
This is equivalent to type:calendar OR commentary OR magazine, which is definitely not what you want. You need something more like type:(calendar,commentary,magazine) or like type:calendar,type:commentary,type:magazine
Andrew Batishko | Logos software developer
0 -
Thanks, MJ and Andrew. Your suggestion, MJ, indeed missed out some books as you predicted but it also picked up other ones I didn't want there like illustrations. So I tried simplifying it somewhat:
subjects:sermon,sermons OR type:sermons ANDNOT type:"Bible Commentary", illustrationsIt didn't work. I still see illustrations and Bible commentaries. So I tried Andrew's suggestion to use the parenthesis another way:
subjects:sermon,sermons OR type:sermons ANDNOT type:("Bible Commentary", illustrations)
Same results.
0 -
subjects:sermon,sermons OR type:sermons ANDNOT type:("Bible Commentary", illustrations)
Try putting the first half of the string - before the ANDNOT - in parentheses:
(subjects:sermon,sermons OR type:sermons) ANDNOT type:("Bible Commentary", illustrations)
0 -
Same results.
Graham gave you a good answer. But just to be sure, you do understand that the Bible Commentaries picked up are in fact sermons not commentaries from the point of view of the author and the original audience.
Orthodox Bishop Alfeyev: "To be a theologian means to have experience of a personal encounter with God through prayer and worship."; Orthodox proverb: "We know where the Church is, we do not know where it is not."
0 -
subjects:sermon,sermons OR type:sermons ANDNOT type:("Bible Commentary", illustrations)
It's picking up illustrations because you fixed one instance of the problem, but not the other. When you use a field identifier, it has a higher "precedence" than the comma. That means that it's only going to apply to the first term in the list. You would have to use parenthesis to indicate that the field applies to all the terms in the list.
(subjects:(sermon,sermons) OR type:sermons) ANDNOT type:("Bible Commentary", illustrations)
Andrew Batishko | Logos software developer
0 -
Thanks for the suggestions. The placing of the parenthesis worked. I just had to include in the ANDNOT argument a lot of other things I didn't want in the collection.
I did this: (subjects:sermon,sermons OR type:sermons) ANDNOT type:("Bible Commentary", Illustrations,magazine,"Media Collection","Festschrift","Journal","Handbook","Biblical Theology","Courseware Textbook","Study Bible")
It worked. Thanks.
0 -
I did this: (subjects:sermon,sermons OR type:sermons)
I believe you may have meant (subject:(sermon,sermons) OR type:sermons).
“The trouble is that everyone talks about reforming others and no one thinks about reforming himself.” St. Peter of Alcántara
0 -
I did this: (subjects:sermon,sermons OR type:sermons) ANDNOT type:("Bible Commentary", Illustrations,magazine,"Media Collection","Festschrift","Journal","Handbook","Biblical Theology","Courseware Textbook","Study Bible")
You missed parentheses around the subjects options again! However, you can simplify that with (subj:sermon OR type:sermons) because partial matches are allowed.
Your results will include type:"Sermon Outlines"; which you do not exclude with the ANDNOT. Therefore consider (subj:sermon OR type:sermon) because type:sermon will match type:"Sermon Outlines".
Dave
===Windows 11 & Android 13
0