On a query tag I have the execution rate at 30mins. Even thought the value will always be Dataset[20R x 5C] would the script work?
Probably, as a query returns a "new" dataset even if the contents are the same.
10 4, thank you ill give it a shot. Ill update here in a minute
It does in fact, do that.
I used this as a trigger for it.
Maybe will help someone else:
if previousValue.value != currentValue.value:
'your tag stuff here'
That will throw errors on tag restart, as previousValue
will be null. Always check initialChange
first.
2 Likes