Been wrapping my head around the inner workings of the Evaluate DAT, going through the documentation. I have a grid that I want to manipulate in its different properties. I need to access a row by its index, taking the index value (or range of values) from a CHOP, and then write a new value to a certain column, from another CHOP.
How can I do that with a Python expression? (any example will do). And what would be the correct input mode for the Evaluate DAT? At the moment, reading the expression from a table as input data, it simply replaces the first row, when the idea is to iterate through all the rows and change the column value(s) at the index I want to feed from the CHOP.
The Evaluate DAT takes two inputs. First input is the table of values you want to change. Second input is the table of expressions you want to use to affect the input table. Each expression in the cells of the second input table will be applied on a per cell basis to the input table. If no expression is given for a cell then it will use the expression of the cell above it for the entire column until it receives an expression.
You should have in your inbox an example TOE with the examples you are looking for.