Quote:
Originally Posted by Katsunami
Hold tight....
That's it. It returns all books for which #pgs has no value. If #pgs is 0, it DOES have a value, and so the book will not be returned.
If you want to find all books that either have no value for #pgs or have a value of 0 or less (maybe due to an error), use this:
Code:
(#pgs:false OR #pgs:<=0)
And yes, this works as well to find all books for which no useful page number is defined:
|
As a programmer, I'm a big believer in bracketed clauses ... er ... snippets of code inside parenthesis.
While I could have sworn I tried false, it appears I was wrong. Indeed, using the particular bit of code, properly parenthesized, along with my date parameter has done the trick. It found the eight offending docs AND the three other files of supposedly count-worthy format that failed due to corruption of some sort in the file. As a result, the potential issues have been excised and I feel better about ignoring those informative boxes after I do a count.
Thanks for all the of the help.