Have clicked through the entire node tree to see, if the below can done, but didn’t come up with anything too useful.
I would like to consecutively fill empty cells (and only empty cells) in a column with values from a column in another data table. E.g., a column in the first data table would look like this (empty cells indicated by a dot):
Table(1)Col(x)
Control1
.
.
.
Control2
Control3
.
.
.
Control4
Now I have a second table with a column of continuous data, like that:
Table(2)Col(y)
Value1
Value2
Value3
Value4
Value5
And I want to fill the empty cells in Table(1)Col(x) with the values from Table(2)Col(y), so that the resulting column(x) in table(1) would look like this:
Table(1)Col(x)
Control1
Value1
Value2
Value3
Control2
Control3
Value4
Value5
.
Control4
Ideally, if there are more empty cells in col(x) than values in col(y), the filling-in would just stop when all the values in col(y) are used up. Conversely, if there are more values in col(y) than there are empty cells in Col(x), the filling-in should stop when all empty cells in col(x) are used up.
Is there a way to do this? Thx!