Runtime error when loading data to my app

i am trying to add data to my app but every time after refresh or got data this message appears

this due to large data when i got from in google sheet, airtable and even csv file on storage what shall i do to avoid this message.

The list has 681 items in it and you’re trying to get data at index number 682. That’s the problem.

Airtel is not an ideal database to be used. Try any other DB that can handle larger records.

Moreover, load records asynchronously. This will decrease the pay load on server resulting your app to work smoothly.

thanks for our attention@ asimjib93 i already load data from csv file on data storage but how to solve it thats my blocks

Post an example aia if possible. I’m not having my system on right now.

You r using text of length block not length of list…
Check lenght of list in list block…

1 Like

i already changed it an still present :relieved:

Remove lenght of list block…
Put 681 manually then check its working or not…

also still present after determining the list length manually

What about providing a screenshot of your latest blocks? It would be wise to use the length of list block from the list drawer…

Taifun

1 Like

image


image

Do not use number + 1…
For the last record this will bring you outside of the length of the list…
Rather start the loop at 2
Edit: also why are there 2 nested loops?

Taifun

1 Like

thanks solved @Taifun :wink:

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