Select rows based of multiple conditions
Hello,I'm trying to select rows where either the second or third column have a value below 10^-9, or if there is a missing value in the 4th column. The problem appears to be with the less than operator and I cannot figure out why. Example table:Col1Col2Col3Col410.000000590.000000308A24.08e-9-8.1e-11B3-1.11e-101.02e-10 Here's the code:dtColNames = dt << get ColumnNames("String");
val = 10^-9;
dt <...
ron_horne
vince_faller