You needed a loop to loop through all the rows in the excel. I have modified the Xaml. The noOfRows in excel is hard coded for now(=10) . Try to replace it with actual no of rows in the excel file.
I suggest using For Each Row activity in your workflow which means for each row you have in your excel file, it will do the process you want until the end of the file.
Would you mind showing me what that looks like. That sounds a bit different than what other people are telling me to do, but I want to see it to make sure I’m doing it right if you don’t mind.
I keep playing with it, but it does not seem to be working. I’m going to try a loophole instead. Less effective, but I can’t figure out how to get it to work. It loops, but does not go to the next row.
In the video she’s using a csv file because of that The only difference that you have to do is just
1- Set an excel application scope
2- Read Range after the excel application scope
3- While you selected Read Range activity set a variable to create a data table in the Output section.
After you create the data table
1- drag a new sequence in your flow chart
2- Drag an Open Browser activity inside the sequence
3 In the Do Section drag a For Each Row activity and Valuable Expression is gonna be the name of the data table
4- In the “Type into section” write like this
row(“Name”).ToString Whatever you wrote the column name just change that. It must be exactly the same.
Bro, I find the same Issues as you are facing, It iterates only one time in excel(Only takes first Value) I use the for each row in flowchart. here I came up with the solution, I give the targeted element to type Into (input) it validates first time but when the loop runs second time the selector(Targeted) element does not find the input section so you need to give the unique element of that input section which doesn’t changes and remains same. you can use like this.
in Target Selector “” change the aria-label according to yours.
Bro, I find the same Issues as you are facing, It iterates only one time in excel(Only takes first Value) I use the for each row in flowchart. here I came up with the solution, I give the targeted element to type Into (input) it validates first time but when the loop runs second time the selector(Targeted) element does not find the input section so you need to give the unique element of that input section which doesn’t changes and remains same . you can use like this.
in **Target Selector
** change the aria-label according to yours.