Definition and Usage
The Loop data table command is used to iterate through a set of commands and repeat them for each item in a specified table. It is a handy tool for things such as flexibly managing large amounts of data in a table structure.
Parameters Values
Parameter | Description |
Data table | Select a data table to be actioned with |
Start row | Indicate the row to start the loop with: starting with 1, use "-n" to indicate the n-th line from the bottom |
End row | Indicate the row to end the loop: starting with 1, use "-n" to indicate the n-th line from the bottom |
Save looped row as | Save all the looped row(s) as a new variable |
Example
Parameter setup:
Table1:
Workflow:
This workflow will loop through the "Table1
" starting from the first row to the last row, saving each row as a new variable named "currentRow
". For each row, the "Item" column will be printed and the loop will end after the last row is reached.