Jordan,
I was wondering if someone would catch that. Unfortunately, it has to be a string because it comes from another datasource that we can’t modify.
Here’s what I came up with so far by playing with a Table as the output (I’ll move to a chart later). It seems to be working for the one string column and converting to int, but I can’t figure out how to build the next column which is already an int.
[code]data = event.source.parent.CycleTimes
table = event.source.parent.getComponent(“Table”)
rows = []
headers = [“OP100 CT”]
for row in range(data.rowCount):
oneRow = data.getValueAt(row, “OP100 Cycle Time2”)
rows.append([int(oneRow)])
data = system.dataset.toDataSet(headers,rows)
table.data = data
[/code]
I’m still getting used to playing with datasets and going through the docs so I’m sure it’s something simple that I’m missing.