So I want to grite an info that I get from a webpage depending the number of the day
If is day 1 I write it on the row of day 1
I create it using the for each row activity with an if But I want to know if there is a more simple way to create this
However, I really don’t think that’s necessary in your case since it’s a fixes sequence. You can just offset the Row by the difference in index (i.e. Day 1 is on Row 8, so offset the row value by 7 and you should be good to write directly on the row)
@Juandix you can maintain two datatables. One which contains your current data through add data row and second which contains previous days data. In the last you can merge both.