Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X
Hi all,
How to get the output in string from infotable in loop, based on index values.
Thank you
I understand that you are asking how to access the data of individual rows of a infotable when using forEach()? Basically you do it like for any other object.
// Assume your infotable "myInfoTable" has the following columns:
// id, username, age
myInfoTable.rows.toArray().forEach(row => {
// The "row"-object contains the information for the individual row
logger.info("id: " + row.id);
logger.info("username: " + row.username);
logger.info("age: " + row.age);
});