cunderw
6 years agoCommunity Hero
Like the previous post mentioned, it's very possibly to script this already. You can edit variables at run time, including the table variable created by the Data Generator. You just need to create script code that generates the random data based off of your criteria.
Example:
function test() { let table = Project.Variables.Var1; for(let i = 0; i < table.RowCount; i++) { table.$set("Item", 0, i, Math.round(Math.random() * (10 - 1) + 0)); Log.Message(table.Item(0,i)) } }
Related Content
- 5 years ago
- 2 years ago
- 7 years ago