Dynamic Text in Multi-State Indicator

I am trying to create a multi-state indicator with a simple 2 state function. However I need to have the text value for each state to be dynamic. Each state's text will be read from a configured tag to allow the user to dynamically change the state during operation depending on function. Is there a work around to allow this feature or similar.

In the attached image I want to change the "Off" & "On" text to be from a tag within Ignition.

Thanks,

Loizel87

The Multi-State Indicator has a property in appearance called Styles, its dataset. You can bind this dataset using a cell update function. the cell update allows to select indivdual cells to tags etc.

2 Likes

Chris,
Thanks that is exactly what I was looking for!

je veux ecrire un texte canstant avec un texte dynamique et jarrive pas voici ce que jai ecrie
'Température acctuel
est:'{[default]Tags/HTST/PLC/HMI/Thermiseur/Therm_Display/Actuel _Temperature_To_reach.value}

Use a stringFormat in your expression:
stringFormat('Température acctuelest: %s', {[default]Tags/HTST/PLC/HMI/Thermiseur/Therm_Display/Actuel _Temperature_To_reach.value})

1 Like