Table to an array

Is there a method in Ignition to take the data in a table and stick it in an memory tag array.

Hi Darrell,

You could do that through Python scripting, using the system.tag.write function. I think writing the data to a dataset memory tag would be easier.

Here’s an example:

table = event.source.parent.getComponent('Table')
system.tag.write("test",table.data)