@YounesGa To have each thread use only 1 line, set the value "max success usage: 1", "max number of simultaneous use: 1".
This is equivalent to the fact that after the flow finishes running with a result of Success, the already used proxy line will not be used again, whereas if there is an error, it will be reused 999999999 times and only one line. for each stream
290a12f6-98cf-4378-9d4c-72a246339adb-image.png
Multi column Excel file
-
Hi, so I have an excel file, and I have over 1000 columns in this file. I codded the script to read A1 B1 C1 D1 and lets say L1, everything works perfectly but what I want is script should go to second column like A2 B2 C2 D2 and L2. I can do it manually but doing this 1000 times might give me cancer. So I was wondering if there is an easier way to do it?
My function works this way;
Read cell A1 and type it to this element
Read cell B1 and type it to this element.When this is over, it should go to A2 and B2 then A3 and B3 and on and on..
-
@korkmazzenci, like this excel_cycle.xml. The cycle starts at 0 since
index = number - 1. You can also use the actions that read several cells at once "Read sheet", "Read cells range", "Read rows". -
I fixed my problem by deleting the first row everytime Im done with it. So now I create a excel file, everytime script works on first row, it deletes it and second row becomes first one and works like that.