Skip to main content
17-Peridot
September 13, 2022
Solved

Any function is available to add multiple empty rows in infotable ?

  • September 13, 2022
  • 1 reply
  • 1013 views

According to one infotable's length, i need to add empty rows in another infotable. Any function is available to add multiple empty rows in infotable ?

Best answer by Sathishkumar_C

 try below code

var i = 0;
var length = 10; //Required number of rows
for( ; i < length; i++){
 result.AddRow({}); //result - infotable name
}

 

1 reply

17-Peridot
September 13, 2022

 try below code

var i = 0;
var length = 10; //Required number of rows
for( ; i < length; i++){
 result.AddRow({}); //result - infotable name
}