How to fill Matrix using a nested loop
I am trying to extract a specific set of numeric data from a file (which contains both text and numbers) and put it into a separate table which is easier to analyze in JMP. I want the script to work for any number of columns or rows where the data meeting specific criteria might be. What I have come up with is below:Rowlist = [];
For( i = 1, i <= N Rows( Dtraw ), i++,
If( i == 1,
If( Num( Col...
dale_lehman