Array Index play in same time

Hi ,
Can we read the Array index simultaneously ?
I have created the multiple data table, each had 100+ rows . I want run each data table in same time . for that I have created the data table in Array format. but it is reading the last index only .
Is there any way to read all the data table in same time ?

Someone address this issue ? Thanks in advance …
Attached screenshot for reference.

Hi ,
After adding for each loop, I got infinite loop error .


You either hit a loop limit (can be increased in project preferences). Or it’s caused by the way you call it.

How many total element are we talking about?

I have added 3 elements of data table . But all Data table had 3000 Rows.
I want to run all the data table in same time but Row wise.

3000x3 is just 9k. The default kimit is 100k I think. Either you have more data or perform some recursive operations.

Overall Row count is 27k only . I have splitted into 3 data tables. Each has 9k Rows.

As mentioned above, the issue then stems from what you do with said data. Increase the limit:

Don’t go too high, having an infinite loop error thrown in your face is a good thing from a dev point of view.

It is Maximum only. Still I am getting Infinite Loop Error.

I mean, I feel like I’ve mentioned it a couple of times already…

  • what else is going on with the script?
  • is this a recursive thing?
  • do you call that event in more places?
  • do you enter additional loops later on?

We can only see the script snippet you show. And there’s nothing wrong with that. You must look for the issue elsewhere.