Hey Guys,
I am reading a list of Work Order Numbers from Excel. I want to read the WO# and then go click the number on a website. At this point, I can’t get my flow to go to the Process block. Every time I run the workflow it Ends.
I’ve tried switching the initial Boolean value, I’ve tried changing the counter. I think I must be missing something fairly obvious and would really appreciate any help! I’ve attached the workflow and excel below. Thanks in advance!
I like the visual layout of this flow verus a for each and would prefer to keep it this way if possible 
flowexample.xaml (18.6 KB)
ScrapedWO#.xlsx (8.1 KB)
@Joshua_Kemp 
In above statement ur getting error, rectify it.
otherwise use foreach loop on dataTable and get the data
1 Like
Thanks for your help, I still couldn’t get it to work so I went another approach. Thanks!
It will be helpful if you place a “Rethrow” activity in the Catch. That way if an error occurs, you know why. Once the errors are ironed out, then you can remove the Rethrow.
Yeah, I also suggest using a For Each so you can retire row counters and end of data decisions (I think it’s less cluttered). You can place a flowchart inside the For Each too.
See below example:
Regards.
1 Like
Thanks Clayton, I really appreciate your help and for the example!