Getting single variable from repeated row

Hi,

I’m trying to use templating variables in a “text” panel, using HTML. I have multiple Text Panels split across different rows, each row is repeated per variable.

The variable is $system. However when using the $system syntax in a Text panel I get a list of all of the variables available, not the definition of the singular row in question.

E.G:

$system, might be: { sys1, sys2, sys3 }

Repeated Rows:

sys1

  • text panel with $system displays: { sys1, sys2, sys3 }
    sys2
  • text panel with $system displays: { sys1, sys2, sys3 }
    sys3
  • text panel with $system displays: { sys1, sys2, sys3 }

What I would like:

sys1

  • text panel with $system displays: sys1
    sys2
  • text panel with $system displays: sys2
    sys3
  • text panel with $system displays: sys3

Hope this makes sense, basically is there a way of extracting the repeated variable name for use in a panel on the row in question?

Is anybody able to help with this. I need to be able to access template variables as they are repeated “per row”