Quote:
|
Originally Posted by chriscozi
What's wrong with performing the find and then perfoming another omit within the same script? Don't forget to work within the current found set.
We used to have to do successive finds in the same script. This should be no different.
|
There are 2 ways of programming the find-request:
1. Enter FindMode[] > SetField[...] > PerformFind[]
2. Perform Find[Restore] //FindRequest specified within
Now as I want to use Get(ScriptParameter) (for the first condition), I have to use way1.
But for condition 4 I have to use way2 because saying "does not equal 5" only works with OMIT, and this only works with way2.
Then I have to combine the two, which I cannot do via
Enter FindMode > SetField[field1; Get(ScriptParameter)] > PerformFind[] > ExtendFoundSet[Restore] /where Restore is " OMIT field4 = 5 "
because this would be an OR-search rather than an AND-search...