Help with inserting multiple tags into a table

I am looking for way to insert multiple tag values into a table in the same row. Looking at the table setValue command, but there are 62 columns in this table. The other issue is I want this only to update the table when an certain event has occurred, button action performed as an example. Any suggestions would be helpful.

If your question is whether there’s a more efficient way than calling setValue multiple times, then you could use the system.dataset.updateRow function. You can make as many changes as you want to a given row at once. This, coupled with system.tag.readAll(), would be very efficient.

Yes, I was looking for a more efficient way. I will try using the updateRow function. Thanks.