asked on April 27, 2021

Hello, I am trying to beef up our automated OCR process.  We run this criteria to do our automated, nightly OCR:

({LF:AssociatedPages="Y"} & {LF:OCR=none})&{LF:pagecount > 0} - {[]:[Photo]="Yes"}

We have used a field to add to documents for photos that gets them excluded from the OCR pool.  We wanted to add another field for maps, and tried to include it in our criteria like this:

({LF:AssociatedPages="Y"} & {LF:OCR=none})&{LF:pagecount > 0} - ({[]:[Photo]="Yes"}|{[]:[Map]="Yes"})

however, that results in 8 items, when there are over 4 thousand that would meet this criteria.

Adding even more, if I do this criteria:

({LF:AssociatedPages="Y"} & {LF:OCR=none}&{LF:pagecount > 0}) - ({[]:[photo]="Yes"}-{[]:[map]="yes"})

it includes all 4 thousand items, but also includes those with map as "yes"!

This

({LF:AssociatedPages="Y"} & {LF:OCR=none})&{LF:pagecount > 0} - {[]:[Photo]="Yes"} | {[]:[Map]="Yes"}

Or

({LF:AssociatedPages="Y"} & {LF:OCR=none})&{LF:pagecount > 0} - {[]:[Photo]="Yes"} | {[]:[Map]<>"Yes"}

get identical results as well.  Any errors or issues i am not seeing?

Thank you for your time!

1 0