I have a flow that gets a list of files from a directory. I then use a For Each along with a Read File to loop through those files. Within that, I have a Data Iterator when I read through the line in the file looking for specific text. My issue is, when the Data Iterator process is completed and I go out and get the next file, do the Read File and then Iterate through the lines again, the recordNumber is at whatever it left off at from the previous file. How do I get it to start a 1 when I get a new file to iterate through?
Thanks
Hi David,
Thanks for the reply. I don't know what happened to my other posting but I figured out what was going on. Instead of having the flow go to the end of data iterator I had it going to thend of the foreach so it wasn't resetting my iterator loop. I also realized that I didn't need to iterate through the lines of text, all I needed to do was perform a search on the whole document.