Tag reading in SFC transition

Hi,
how can I read a TAG with dynamic path in SFC transition?
Please any suggestions.

example of Non dynamic works fine:
{[default]Assembly_Cells/PAC_S1/OPC/Line_Status}

I want tho have "PAC_S1" part dynamic. Stored in chart variable.

thank you

It is an expression, so you can use the tag() expression:
https://docs.inductiveautomation.com/display/DOC81/tag

it is working:
tag("[default]PreAssembly_Cells/"+{chart.StationName}+"/OPC/Line_Status")

thank you!