Good Morning
Any help here would be much appreciated. I am trying to add a new column that will add either a yes or a no based on a Bx no. range
So in table below any Bx No before 10732 would return a "Yes" in the 0.3mic column and any Bx No after would return a "No".
Thanks in advance.
Chris
Go to Solution
Try this
dt << New Column( "0.3mic filtered ", Character, Nominal, Formula( If( Num( :C_LOT_NAME ) < 10732, "YES", "No" ) ) );
View solution in original post
I tried this but only get No returned in the column:
dt << New Column( "0.3mic filtered ", Character, Nominal, Formula( If( :C_LOT_NAME == "<10732" , "YES", "No" ) ) );
Hi
Thank you very much, this worked well. Your help is much appreciated.
Regards