I got a list which I need to iterate through. I want to perform certain actions with each of the numbers one by one. I’d like to assign them to a variable, perform the action and then continue with the next one. Any ideas? Contacts.xlsx (7.3 KB)
Hi
Hope this sequence would help you resolve this
—Use a excel application scope and pass the above excel file path as input
—inside the scope use a READ RANGE a activity and get the output with variable of type datatable named dt
—now use a FOR EACH ROW activity and pass the variable dt as input
—inside the loop we can simply use a assign activity to make changes or any manipulation we want
Like row(“yourcolumnname”) = “the value you want”