Output gives correct amount of queue items but when getting a queue item from Orchestrator it starts at row 2.
I read 10 queue items from an excel file, i use Log Message Info to the output pane to show all the entries and it show all of them, but when the flow is picking a queue item it starts at row 2. Consequently it misses the first one and gives an error at the end that there are no more lines to read.
QueueItem.Reference = “2”
Edit: There was a predefined template modified from the one UiPath provides, and i had no access to the Orchestrator so I had some trouble to investigate how it worked. But it’s solved now. Thanks for reaching out.
I beleive in your get transaction data you assigned in_transactionNumber for getting each row i guess…add a -1 …in_transactionNumber-1 as the index starts from 0 and condition should be less than count
This can happen if the first row of the Excel file contains headers, and you have configured your UiPath workflow to skip the first row when reading the data from the Excel file.