I´m trying to reference the same parameter from 20+ instances of the same Base COMP. For this I wanted to use an expression in a Table DAT and feed that into an Eval DAT to get the values. But because i have 20 plus instances of the same operator/ parameter I wanted to make it easier by writing something in the Table rows, like:
op(‘MyBaseComp” + str(*this Row*) +”’).par.MyParameterx. I could just paste this over and over.
I’m not sure if this is the best approach to this problem, but it seems like a simple syntax issue, that I don´t know.
A good place to start for such questions is always first the documentation page for the node you have a question about (click the question mark icon in top left of the parameter window of any node to open its documentation)
There you’ll see you can use things like me.inputRow and me.inputCell
For some practical examples then open Help → Operator Snippets and in there, open the Evaluate DAT examples.
Also I made a snippet which implements your description, attached below (just drag the tox into your network) evaluate_DAT_example.tox (542 Bytes)
when working with the Table DAT and these kind of dynamic references, it might be worthwhile to check the Table DAT’s Fill feature where you have access to members like me.subRow to utilize the current row’s index.