I'm using an expression tag to read the value of another OPC tag. Everything works but I'd like to use the expression tags name to help build the expression.
Expression tag is "Tag1"
OPC tag is "Tag1 OPC"
In the expression of "Tag1" this will read the value.
{[.]Tag1 OPC}
I can use the tag function and it works but I've read that it should be avoided as it adds more overhead.
tag("[.]"+{TagName}+" OPC")
Not sure if a custom property can help. It needs to use the name/path of the expression tag "Tag1"
to read the value of the custom property and so far I've just been able to pass the correct OPC tag name and I'd just need to use the tag() function again.