When a multiple condition is
<A>and<B>or<C>or<D>
Does the dataminer evaluate A and (B or C or D)
or
(A and B) or C or D
is there a way to describe both conditions ?
Marieke Goethals [SLC] [DevOps Catalyst] Selected answer as best 11th July 2023
Hi Bernard,
As far as I remember you could use '(' and ')' to group your conditions. This means that you could implement both cases:
- <A>and(<B>or<C>or<D)
- (<A>and<B>)or<C>or<D>
Reference: RN8354
Marieke Goethals [SLC] [DevOps Catalyst] Selected answer as best 11th July 2023