If Statement in For Loop Error
Hi! I am having trouble with putting my if statement in my for loop. I want my if statement to evalaute which elements in the array matches the word "Continuous", and store that column's data in a seperate array/list ( a suggestion for the best way to store coloumn data would also be helpful). I'd appreciate any help! Thanks.Column Data = {};
for(i= 0, i <= ncol, i++,
if ((Result[i] == "Contin
...