Solved
Any function is available to add multiple empty rows in infotable ?
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 ?
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 ?
try below code
var i = 0;
var length = 10; //Required number of rows
for( ; i < length; i++){
result.AddRow({}); //result - infotable name
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.