Extract Cell index which contains specific word

HI @hoseongwon

When you try to access an element in an array that does not exist or is out of range

Example, if you have an array of 5 elements and you try to access the 10th element, you will get this error.

Kindly check the syntax that you have been used in the expression

To fix this error, you need to make sure that your index is within the bounds of the array length.

You can use the Length property of the array to check how many elements it has and avoid using indexes that are greater than or equal to it.

Check out this thread

Regards
Gokul

1 Like