Hello,
I would like to copy cell entries and paste them into empty cells a set number of times.
Here is an example:
I want to fill 2 cells (indicated by the 'number' column) with "Hello" from the 'text' column and 4 cells with the text "Bye" into the cells beneath.
RowID | number | text |
1 | 2 | Hello |
2 | ||
3 | ||
4 | ||
5 | 4 | Bye |
6 | ||
7 | ||
8 | ||
9 |
That's what it's supposed to look like:
RowID | number | text |
1 | 2 | Hello |
2 | Hello | |
3 | Hello | |
4 | ||
5 | 4 | Bye |
6 | Bye | |
7 | Bye | |
8 | Bye | |
9 | Bye |
I have absolutely no clue how to do this. Maybe someone knows a node or a combination of nodes that'll do it?
Help is much appreciated!