I have this math expression that yields “NO DATA”:
($tagHistoryMin<$thresholdMin) || ($tagHistoryMax>$thresholdMax)
No error message.
if I remove either the left or the right half of the expression like:
($tagHistoryMin<$thresholdMin)
or:
($tagHistoryMax>$thresholdMax)
The expression works fine.
If I change the expression to:
($tagHistoryMin<$thresholdMin) || (1==1)
It also yields data.
What’s going on?