Copy-Paste error with JSL [Column "???" requires numeric vlaues]
I don't know why this isn't working. I select rows who are empty, select a seccond column and try to copy them into the empty ones.Both columns are numeric and it worked sometimes with other tables. Sample table ans script is attached. dt_2= data table("Untitled 20");
dt_2 << Select Where(Is Missing( :target1));
rs = dt_2 << Get Selected Rows();
if(nitems(rs)>0,
dt_2:target1[rs] = dt_2:temp1[rs]
...