Copy down

It there a way to copy down a cell? Filling all the other cells in the column with one cell a reference…

You can try to use the following approach:

var value = grid. cells(some_row_id,column_index).getValue();
 
grid.forEachRow(function(id){

    grid.cells(id,column_index).setValue(value);

})