Hello,
I have an HOA and I'm wanting to make it so a single label can use the 3 PLC tags to determine what the Text is for a view. I've been looking and I'm kind of stumped. Can anyone give me any idea's or suggestions to look into please?
Add three custom properties to the label component, or to the view, one for each tag. Place tag bindings (indirect if appropriate) on those properties to pull the live tag value into the UI. Place an expression binding on the label's props.text
to generate the correct text. That expression can use multiple nested if()
functions, or case()
or switch()
wrapping a binEnum()
or binEnc()
boolean to integer conversion.
(The user manual appendix for expression functions is your friend.)