Indirect tags in SFC transitions

Hi
I am having difficulty in using indirect tags in SFC transitions.

I have an SFC with Key Parameter “Tank”, value 1-18.
I have corresponding Tags : “Tank_n_HighLevel”
What is the correct format for representing these tags indirectly in an SFC transition?

Assistance appreciated.
JR

SFC Transitions use the Expression Language, so tag names have to be concatenated, something like:

tag("[default]Tank_" + {n} + "_HighLevel")

Where n is a chart-scoped variable.

4 Likes