Select Where evaluation using a variable
I'm having a strange issue when trying to use a variable in Select Where(). The following code works fine:dt << Row Selection( Select Where( df:TestName != "pb" & df:BoType=="xxxx") );
Show(nrows(dt << get selected rows));
Prints in Log: Number of selected rows > 0 as expected.
But the following code fails completely:sb="xxxx";
dt << Row Selection( Select Where( df:TestName != "pb" & df:BoType==sb)
...