Hello i have a string thats formulated Row_0
I want to perform a assignment to this string
Where i only change out the 0
Example everytime i go past that string i want to do the following Row_0 = Row_1
then if it goes past that string again ( in a loop or so ) change Row_2 etc
@langsem Yes. You can assign dynamic values to it. Create a Counter variable Initialised to 0 or 1.
Then use this when you’re performing the Operation “Row_”+counter.ToString
Then Increment the counter by one , counter = counter + 1
So The First time it will be “Row_0”, when it counter gets incremented and if you Check the value in the Second time it will be “Row_1” and it keeps on increasing until the iteration Stops
So i have a program where i want a function that goes down the rows until its no more rows ( i know how to perform this, i am using a element exist with a flow decision and a assign ) but the problem its that the selector its not a index with a simple integer, its row its outputed Row_0, Row_1, Row_2 etc. So i would need to make a a variable upon that row and make it a string
@langsem Ok. i Think you can use the logic i have given. Then to use that value in the Selector since you’re using a different variable. Assign the Variable COUNTER_DBS_ROW = counter. ToString before it is being used in the Selector.
haha or maybe not, well the counter to make it go to next row works good. But now my actual task dont work. where i am using a get text function to get the date for later match
see the row returns true, then i am using a get text acivity to get the date of the row. but that one failes. i ahve alrdy assigned the row variable to the get text activity