<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
<!--
@font-face
        {font-family:Calibri}
@font-face
        {font-family:Tahoma}
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif"}
a:link, span.MsoHyperlink
        {color:blue;
        text-decoration:underline}
a:visited, span.MsoHyperlinkFollowed
        {color:purple;
        text-decoration:underline}
span.E-MailFormatvorlage17
        {font-family:"Calibri","sans-serif";
        color:windowtext}
.MsoChpDefault
        {font-family:"Calibri","sans-serif"}
@page WordSection1
        {margin:70.85pt 70.85pt 2.0cm 70.85pt}
-->
</style><style type="text/css" id="owaParaStyle">P {margin-top:0;margin-bottom:0;}</style>
</head>
<body fpstyle="1" ocsi="0" vlink="purple" link="blue" lang="EN-US">
<div style="direction: ltr;font-family: Tahoma;color: #000000;font-size: 10pt;">
<div>The Find Data filter (under the Edit menu) will do exactly this</div>
<div><br>
</div>
<div>suppose you have a dataset with two fields called "A" and "B"</div>
<div><br>
</div>
<div>Use Find Data</div>
<div>Create a Selection</div>
<div><br>
</div>
<div>Find Cells from "<name of your grid in the pipeline browser>"</div>
<div>Select   "A"    is >= x   # (replace "x" by the numeric value</div>
<div><br>
</div>
<div>click on "Run Selection Query"</div>
<div>click on Extract Selection and a new object is created in the pipeline.</div>
<div>-----------------------------------------------------------------------------------------------------------<br>
</div>
<div><br>
</div>
<div>Should you want to do this programmatically (using python), it is a far less obvious to figure out the right syntax, because the calls are not being traced. :-(</div>
<div><br>
</div>
<div>Here is the code I would use:</div>
<div><br>
</div>
<div>selection=SelectCells()<br>
selection.QueryString="scalar2 >= x"  # (replace "x" by the numeric value<br>
selection.FieldType = 'CELL'<br>
selection.UpdatePipelineInformation()<br>
<br>
# create a new 'Extract Selection'</div>
<div># assuming your input object is called "grid"</div>
<div><br>
</div>
<div>mySelection = ExtractSelection(Input=grid, Selection=selection)<br>
mySelection.UpdatePipeline()<br>
Show(mySelection)<br>
</div>
<div><br>
</div>
<div>HTH<br>
<div class="BodyFragment"><font size="2"><span style="font-size:10pt;">
<div class="PlainText">-----------------<br>
Jean/CSCS</div>
</span></font></div>
</div>
</div>
</body>
</html>