cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X

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

AP_9587236
17-Peridot

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 ?

1 ACCEPTED SOLUTION

Accepted Solutions

 try below code

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

 

View solution in original post

1 REPLY 1

 try below code

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

 

Top Tags