I've got a flow that reads a MS List, looks for records that are missing our file names, and creates an appropriate one. There are usually less than 100 of these processed and our list shouldn't exceed 5000 items.
My processing so far with only 300 items takes about 6 mins to run. That's pretty slow.
I'm wondering if I can just Get the last 100 items, look for the last one not to have a file name, then go through my file naming process to create and save the updated list item.



Best solution would be to just start the rename at whatever record number was "inLastGood"+1. (inCurrentRecord)