How to remove blank spaces from a List in JSL ?
Hello all , I am new to JMP Scripting . I was working on something and was trying to delete empty spaces from a list in JMP . I have done the following in order to do that : for(i=1,i<nrows(dt),i++, if(SampleList(i)== "", //then Remove From(SampleList,i,1); //else , ShowSampleList); ); );