Fill an array

hi i need help with this error
I want to add that value to an array and then write it to a dt

Hi @GDMM

Array indexes are fixed length so we can’t append or add an element to the existing array.if you want to add an element to an existing collection means you can make use of list. List are similar to arrays but the only difference is we can easily (modify/add/append/delete) list values.

Regards
Robin

1 Like

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