I'm seeing a weird issue with get rows where when trying to make it dynamic.
dt = Open("$SAMPLE_DATA\Big Class.jmp");
dt << get rows Where(:Sex == "F"); //Works
dt << Get Rows Where(Column("Sex") == "F"); // Doesn't Work
//but ...
col = :Sex; //doesn't work
col = Column("Sex"); //Works
//so trying to do
dt << Get Rows Where (col == "F");
//can't work in any way that I can see
Tried a few different versions. Anyone else getting this? I swear I've done this before. I tried :Name as well but it doesn't like using a variable and doing some type of Eval seems pretty hacky for this.