Filtering row values that are not within a given range (JSL)
I am trying to automate some data cleaning. I have lower and high limit values that are considered valid per column and I want to remove verything else having at the end empty values instead. I am missing:How to clear row values once there is a selection.How to reference a column nameIf there is a better way to do it. Names Default To Here( 1 );
dt = Current Data Table();
lower_limit = 69.636;
h
...