Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
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 ?
Solved! Go to Solution.
try below code
var i = 0;
var length = 10; //Required number of rows
for( ; i < length; i++){
result.AddRow({}); //result - infotable name
}
try below code
var i = 0;
var length = 10; //Required number of rows
for( ; i < length; i++){
result.AddRow({}); //result - infotable name
}