Can someone point to me what is wrong in my workflow? It’s working fine until it stops in the middle of the datatable telling “For Loop Row: Index was outside the bounds of the array.”
Attached is my XAML and excel source data. It’s printing excel- columns to write line at the moment for debugging purposes…
@Mikko_S That error occurs mostly when you try to access an Index out of the Array, Like If an Array contains 4 items and if you try to access the 5th item.
Sure. I am inputting this data to AS400 terminal mainframe. single order is one row and i input each time 3 first values like “Column A + Column B + Column C” next one D,E,F and so on. When we reach end of the row we reset counters and continue. Customer id is fetched from same excel file from another sheet.
Nice try but this one does not go systematically each row. I actually started building too with straight on for- loops but hit the roadblock. Splitting datatable seems better approach for now. Thank you anyways!