JoeSCADA wrote:
>I have a Backwash Flow tag which I want to have a value only when a
>Backwash Valve is open. Else, I want the tag to be zero.
Instead of referencing the Backwash Flow tag directly, you can use an expression
object.
That allows you to use the if function for the expression. The expression
would look
something like "if(BackwashValveOpen,BackwashFlowTag,0)".
Almost seems too easy, but it works very well.