"MODIFY_LIST" Command
Scenario: Suppose we want to create an empty list and add 1 column and row, then add 2 users to it.
Procedure: Define a step with Set_List and select Empty. Then using Modify_List command, you can start adding columns and rows and modifying them accordingly.
Step Order:
1- Set_List list EMPTY Creates an empty list
2- Modify_List @list ADD_COLUMN Adds a new column to the list
3- Modify_List @list ADD_ROW Adds a new row to the list
4- Modify_List @list MODIFY_VALUE Modifies existing Row/Column by adding value
5- Modify_List @list ADD_ROW Adds a new row to the list
6- Modify_List @list MODIFY_VALUE Modifies new Row by adding value
Â
Â
Â
Â
Â
Â