Hello,
I'm trying to concatenate this channel:
ch("linkedname")
into this expression:
centroid("../geo_triple04/OUT_triple04", D_X)
Here's what I've tried, but haven't gotten it to work...
centroid("../geo_`ch("linkedname")`/OUT_`ch("linkedname")`", D_X)
centroid(strcat(""../geo_", ch("linkedname")+strcat("/OUT_", ch("linkedname")+", D_X)
centroid(( ""../geo_" + "`ch("linkedname")`" + "/OUT_" + "`ch("linkedname")`""), D_X)
centroid("../geo_" + `ch("linkedname")` + "/OUT_" + `ch("linkedname")`, D_X)
Have to replace many pieces of geometry so this could save me hours of time.
Thanks in advance!