Hello,
I'm searching, but I found nothing about update a list or datatable.
For example, I have this list:
I want to update the value of the index 1 of the list, but a found nothing about this except use Excel to write an Excel sheet and read the sheet top build a datatable.
Did we have any easy solution to update list or datatable on a certain index ?
Best regards
Solved! Go to Solution.
Use the Set variable action.
%List[0]% will update the first item, [1] the second, and so on.
If you use a Loop to scroll through the list, the input in Set variable will be something like %List[LoopIndex]%
Use the Set variable action.
%List[0]% will update the first item, [1] the second, and so on.
If you use a Loop to scroll through the list, the input in Set variable will be something like %List[LoopIndex]%
Hello
I didn't know this syntax.
Thanks !