I have an array being filled with data using AJAX and CSV>ARRAY and this works great.
I would like to scan the entire array and build a secondary array that tracks empty entries and their position in the original array.
I am trying to build a For or a While or a For Each loop to do this but I am failing.
I am using len(Array.At(CurrentPosition, 3, 0)) > 0 to look for empty array cells in the 4th column of each part of the For loop but my Construct build is simply not working.
0- XXXX
1- XOOX
2- XXOX
3- OOXX
4- XOXO
5- OXXO
6- OXOX
7- XOOO
8- OOOX
9- OOOO
For each Array.Entry IF Column 3 = X then Push To Back the Current.For into New.Array
This would result in the New.Array of:
0- 0
1- 1
2- 2
3- 3
4- 6
5- 8
Thanks for looking!