How to replace selected values in a column with JSL
Hi everyone, I'm looking to replace alternate values in a column in using scripting. I've managed to select the values in the table but I'm struggling to find a way to replace them in just 1 column only. This is my code so far: Names Default To Here (1); This is t...
dt << new column ("selection", formula (sequence (1,2,1 )));
dt:selection << delete formula;
dt << select where(:1 & :selection !=1);