I'm getting errors with my attempt select a list of matching rows. Any suggestions as to what is wrong with this JSL code:
dt = Gas_Analysis_Full_0127 newList = {"Pump OIL", "ABD GAS"}; dt << Select Where( Contains( newList, :Well Status ) );
Go to Solution
In order to point to a data table you need to use the Data Table() function
dt = data table("Gas_Analysis_Full_0127"); newList = {"Pump OIL", "ABD GAS"}; dt << Select Where( Contains( newList, :Well Status ) );
View solution in original post
Thank you so much Jim!