Community Tip - If community subscription notifications are filling up your inbox you can set up a daily digest and get all your notifications in a single email. X
Hello,
I am trying to assign the last row of a vector of values to my result. I want to start assigning from the second column and assign that value in the first column of a new variable but it is telling me that array index is invalid. Please help me to solve it.
Thank you,
Faisal
Solved! Go to Solution.
Hi Faisal,
You iterate to the last element in the counter "i", You cannot index to :"i +1" past the last element,
Simply adjust the counter "i". See enclosed.
Regards
Terry
Thank you