If row 1 is equal to row 2 then double click and so on

what i need is : if row = row+1 then double click and if row+1 = row+2 then double click again

can you little bit elaborate your flow

1 Like

i have a data table and i am using for each row

so what i need is :

if
row.item(“ColumnA”).ToString = row+1.item(“ColumnA”).ToString
then
Double click

ok kindly try out this syntax

**var_previous_value=DT.Rows(0)(“ColumnA”).ToString

use for each row to iterate datatable
inside the for-each activity
if(index=0)
{
continue;
}
if(currentrow(“Column1”)=var_previous_value
{
double click where you want to click
}

Var_previous_valuw=currentrow(“Column1”).ToString**

update me whether you problem solved are not

Thanks,
Robin

do you have a sample plz ?

i can’t find the index

You can find index tab in properties of for each activity

Create a variable in index tab

Or. Else share you input file and workflow

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.