Incredibly simple question. I am trying to set up a macro that just loops through the rows of a text input and I cannot figure it out. So it would be like this:
Input:
Macro input:
| iteration | col1 | col2 |
| input | input | input |
(one row at a time)
Macro output:
| iteration | result |
| 1 | result for iteration 1 |
| 1 | result for iteration 1 |
| 2 | result for iteration 2 |
| 2 | result for iteration 2 |
(so the union of the results for each iteration)
Does anyone have an example of how this is done?