This is definitely a newbie question in regards to appending tables. I’m doing fine running a script to append a table with blank row (n=op(“table1”), n.appendRow()) , but what is the syntax to grab the data from a row in another table?
The problem this will produce, however, is that you’ll get the entire cell object copied into your target table. Really, you need to make a list of the contents of the cells in the source row so you can correctly append your target table. That would look like this:
op( 'target' ).appendRow( [ op( 'source' ).row(0)[ x ] for x in range( op( 'source' ).numCols ) ] )