[Framers] Are there limits on Conditional Expressions? If so, what are they?

Robert Lauriston robert at lauriston.com
Tue Apr 18 11:02:28 PDT 2017


On Tue, Apr 18, 2017 at 10:42 AM, Lin Sims <ljsims.ml at gmail.com> wrote:
> ...This part of the expression is the same for both:
>
> not ( "DocIss" or "Internal" or "LP" or "LPvA" or "LPvB" or "LPvC" or "NoSeeEm"
> or "SAS4" or "SAS4vA" or "SAS4vB" or "SAS4vC" or "TBP" or "WriterNote" )
>
> and it's telling Frame not to show anything that has at least one of those
> tags attached.

In the second version, it's telling Frame to show everything that does
not have any of those tags. That has no effect on anything that
follows it. The logic is:

NOT ( "DocIss" or ... "WriterNote")
OR
(all the other stuff)

Is what you want actually this?

"LITEvA"
AND ( ("LP" or ... "SAS4vC") AND NOT ("TBP" or "Internal") )
AND NOT ("DocIss" or ... "WriterNote")


More information about the Framers mailing list