How to reference a column with complex name in an expression
Beginner JSL scripter here...I want to create a script that will delete any rows that have missing data within any column. Right now if I rename the column(s) it will work like this: clean_dt << selectWhere(IsMissing(:THK)) << deleteRows ; The problem is, I want this script to be dynamic and be able to handle any name for any column that I give it and reference it by column number for example. Let...