fla
1
Hello
Under the conditions of a transition, is it possible to combine the AND (default) and OR operators in order to be able to implement this logic:
(Category = CAD AND Variable Revision_DEV = -)
OR
(Filepath = %.slddrw AND Variable Revision_Reset_DEV=Yes)
Thanks in advance,
Hello
I think so (I've never needed to do it), have you done any tests? I think that's the best way to find the right combination.
fla
3
Hello
Knowing that the CAD category is defined as follows: (!=%\System_data\% AND %.sld%)
It seems that the answer is:
- Creation of 2 categories:
- CAT1 = (!=%\System_data\% AND %.sld% AND Variable Revision_DEV = -)
- CAT2 = (Filepath=%.slddrw AND Variable Revision_Reset_DEV=Yes)
- Under the conditions of the transition:
- (Category=CAT1 OR Category=CAT2)
Kind regards
3 Likes