Im iterating through the rows in my data table to find which row is throwing an error. How would I write the range in my write cell activity to find my row index.
Hi @kishanpatel728,
int index = dt.Rows.IndexOf(row)
In write cell means pass the value as string value like if you are going to write the value in C cell.
"C"+index.ToString()
Regards, Arivu
1 Like
I used the above command it show s like row is not declared. Please help me to resolve this